/* ════════════════════════════════════════════════════════════════════
   COMPONENTS.CSS — All UI Component Styles
   ════════════════════════════════════════════════════════════════════ */

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font);
}

/* btn-primary – base / fallback */
/* Inherits full styling from /css/style.css – no overrides needed here */

.btn-accent {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover { background: var(--bg-elevated); }

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.btn-block { width: 100%; justify-content: center; }

/* ═══ HEADER / NAVBAR — Dark navy with contrast ═══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 42, 74, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Offset for fixed header */
body { padding-top: 64px; }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.header-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.header-logo-text span {
  color: #F57C00;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.header-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.header-link:hover {
  color: #F57C00;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: #F57C00;
  color: #fff;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.header-cta:hover {
  background: #e07000;
  transform: translateY(-1px);
}

.header-hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.header-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-hamburger svg { display: block; }

/* Logo text (used in header and footer) */
.logo-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-accent { color: var(--accent); }

/* ═══ MOBILE MENU — Dark popup ═══ */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.menu-overlay.open { display: block; }

.menu-popup {
  display: none;
  position: fixed;
  top: 72px;
  right: 16px;
  width: 260px;
  z-index: 510;
  background: #0B2A4A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.4);
  padding: 20px;
}

.menu-popup.open {
  display: block;
  animation: menuFadeIn 0.15s ease-out;
}

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

/* ═══ HERO ═══ */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 1px solid rgba(245, 124, 0, 0.15);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-h1 .highlight {
  color: var(--accent);
  display: block;
  margin-top: 4px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-tag {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 8px;
}

/* Hero Diagram — Abstract System Visual */
.hero-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.diagram-ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: fadeIn 0.8s ease both;
}

.diagram-ring.r1 { width: 100%; height: 100%; top: 0; left: 0; }
.diagram-ring.r2 { width: 72%; height: 72%; top: 14%; left: 14%; border-color: rgba(245, 124, 0, 0.15); }
.diagram-ring.r3 { width: 44%; height: 44%; top: 28%; left: 28%; background: rgba(245, 124, 0, 0.04); border-color: rgba(245, 124, 0, 0.2); }

.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 44%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 4px;
}

.diagram-center-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.diagram-center-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.diagram-node {
  position: absolute;
  padding: 8px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  animation: fadeUp 0.6s 0.3s both;
}

.diagram-node.n1 { top: 2%; left: 60%; }
.diagram-node.n2 { top: 28%; right: -8%; }
.diagram-node.n3 { bottom: 28%; right: -8%; }
.diagram-node.n4 { bottom: 2%; left: 60%; }
.diagram-node.n5 { top: 28%; left: -8%; }
.diagram-node.n6 { bottom: 28%; left: -8%; }

.diagram-node .node-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.node-dot.orange { background: var(--accent); }
.node-dot.blue { background: var(--blue); }
.node-dot.green { background: var(--green); }
.node-dot.purple { background: var(--purple); }

/* Hero inner page variant (tentang, harga, hasil, kontak) */
#hero.hero-inner {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-warm) 100%);
  min-height: auto;
}

.hero-inner .hero-h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}

.hero-inner .hero-h1 .highlight { color: var(--accent); }

.hero-inner .hero-sub {
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══ METRICS BAR ═══ */
.metrics-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.metric-item { text-align: center; }

.metric-value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.metric-value span { color: var(--accent); }

.metric-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-weight: 500;
}

/* ═══ AI WORKFORCE CARDS ═══ */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.employee-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.employee-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.employee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.employee-card.orange::before { background: var(--accent); }
.employee-card.blue::before { background: var(--blue); }
.employee-card.green::before { background: var(--green); }
.employee-card.purple::before { background: var(--purple); }

.employee-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.employee-avatar.orange { background: var(--accent-subtle); }
.employee-avatar.blue { background: var(--blue-subtle); }
.employee-avatar.green { background: var(--green-subtle); }
.employee-avatar.purple { background: var(--purple-subtle); }

.employee-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.employee-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.employee-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.employee-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.employee-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ═══ DASHBOARD PREVIEW ═══ */
.dashboard-preview {
  background: linear-gradient(135deg, #161b22 0%, #1c2333 50%, #0d1117 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(245, 124, 0, 0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dashboard-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dot { width: 8px; height: 8px; border-radius: 50%; }
.dashboard-dot.red { background: #ff5f56; }
.dashboard-dot.yellow { background: #ffbd2e; }
.dashboard-dot.green { background: #27c93f; }

.dashboard-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}

.kpi-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.kpi-value .trend-up {
  color: var(--green);
  font-size: 11px;
  margin-left: 6px;
}

.kpi-value .trend-down {
  color: #ff5f56;
  font-size: 11px;
  margin-left: 6px;
}

.dashboard-table { width: 100%; border-collapse: collapse; }

.dashboard-table th {
  text-align: left;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-table td {
  padding: 10px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard-table .status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
}

.dashboard-table .status.active { color: var(--green); }
.dashboard-table .status.pending { color: var(--accent); }
.dashboard-table .status.won { color: var(--blue); }

/* ═══ WORKFLOW / STEPS ═══ */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 24px;
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.workflow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.workflow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.workflow-icon { font-size: 28px; margin-bottom: 12px; }

.workflow-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.workflow-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ FEATURE GRID ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon { font-size: 24px; margin-bottom: 12px; }

.feature-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ CARDS (General) ═══ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.card:hover .card-icon { transform: scale(1.1); }

.card-icon-light { background: rgba(59, 130, 246, 0.1); color: var(--blue); }

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 124, 0, 0.2);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-amount .curr { font-size: 18px; font-weight: 500; color: var(--text-tertiary); }
.pricing-amount .period { font-size: 14px; font-weight: 400; color: var(--text-tertiary); letter-spacing: 0; }
.pricing-amount .strikethrough { font-size: 16px; font-weight: 400; color: var(--text-tertiary); text-decoration: line-through; margin-left: 8px; }

.pricing-detail {
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.featured .pricing-detail { background: var(--accent-subtle); color: var(--text-primary); }

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══ COMPARISON TABLE ═══ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-white);
}

table.comp { width: 100%; border-collapse: collapse; font-size: 13px; }

table.comp th, table.comp td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

table.comp th {
  background: var(--bg-warm);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.02em;
}

table.comp td { color: var(--text-secondary); }
table.comp .check { color: var(--green); font-weight: 700; }
table.comp .dash { color: var(--text-tertiary); }
table.comp tr:last-child td { border-bottom: none; }

/* ═══ TESTIMONIALS ═══ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.testi-card {
  background: #fff;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testi-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.3;
}

.testi-role {
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 4px 0 16px;
}

.testi-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testi-result {
  font-size: 12px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid #f3f4f6;
  padding-top: 20px;
  width: 100%;
}

/* ═══ CASE STUDIES ═══ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.case-card {
  background: #fff;
  border-radius: 40px;
  border: 1px solid #e5e7eb;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.case-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.case-section { margin-bottom: 20px; }

.case-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-body {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

.metrics-box {
  background: #f0fdf4;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #bbf7d0;
}

.metrics-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.metrics-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-item-inner {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed #86efac;
}

.metric-label-inner {
  font-size: 10px;
  color: #6b7280;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-values {
  display: flex;
  align-items: center;
  gap: 6px;
}

.metric-before {
  font-size: 12px;
  color: #f87171;
  text-decoration: line-through;
}

.metric-arrow { font-size: 10px; color: #9ca3af; }

.metric-after {
  font-size: 14px;
  font-weight: 900;
  color: #16a34a;
}

.case-module {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  margin-top: 16px;
}

/* ═══ CTA SECTIONS ═══ */
.cta-section {
  background: var(--bg-dark);
  color: var(--text-inverse);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-title .highlight { color: var(--accent); }

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* CTA Banner (variant) */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
  border-radius: 24px;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 64px;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
}

.cta-banner-title {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta-banner-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 1.5vw, 16px);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA Final (dark full-width) */
.cta-final {
  padding: 80px 24px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.cta-final-title span { color: var(--accent); }

.cta-final-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 48px;
  font-weight: 500;
  line-height: 1.6;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 20px 48px;
  border-radius: 12px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(245, 124, 0, 0.4);
  transition: all 0.2s;
  border: none;
}

.btn-chat:hover {
  background: var(--accent-hover);
  transform: scale(0.98);
}

.cta-phone {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  margin-top: 24px;
}

.cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 24px;
}

/* ═══ STEPS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
  padding: 0 32px;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══ DEMO SIMULATOR ═══ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a2e;
  border-radius: 44px;
  border: 10px solid #0F172A;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0F172A;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-header {
  background: #1f2c34;
  padding: 12px 16px;
  padding-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.phone-bot-name {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #25d366;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.phone-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
}

.phone-chat {
  height: calc(100% - 120px);
  background: #0b141a;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.phone-chat::-webkit-scrollbar { display: none; }

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  white-space: pre-wrap;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #2a3942;
  color: #fff;
  border-top-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: #005c4b;
  color: #fff;
  border-top-right-radius: 4px;
}

.chat-time {
  font-size: 8px;
  opacity: 0.35;
  text-align: right;
  margin-top: 4px;
  letter-spacing: 0.1em;
}

.typing-bubble {
  align-self: flex-start;
  background: #1f2c34;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  display: none;
  gap: 4px;
}

.typing-bubble.show { display: flex; }

.typing-dot {
  width: 6px;
  height: 6px;
  background: #9ca3af;
  border-radius: 50%;
  animation: bounce 0.6s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.phone-input {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: #0b141a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.phone-input-bar {
  flex: 1;
  height: 36px;
  background: #1f2c34;
  border-radius: 100px;
  opacity: 0.5;
}

.phone-send {
  width: 36px;
  height: 36px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.demo-controls {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.demo-ind-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.ind-btn {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 124, 0, 0.3);
  color: var(--accent);
  background: transparent;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ind-btn:hover,
.ind-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.demo-btn-run {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.demo-btn-run:hover { background: var(--accent-hover); }
.demo-btn-run:disabled { opacity: 0.5; cursor: not-allowed; }

.demo-btn-reset {
  width: 100%;
  padding: 6px;
  color: var(--text-tertiary);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.demo-btn-reset:hover { color: var(--text-primary); }

.demo-checks {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.demo-check-icon {
  color: var(--green);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.demo-quote {
  font-size: 12px;
  color: var(--text-tertiary);
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.demo-install-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-install-btn:hover {
  background: var(--accent);
  color: #fff;
}

.demo-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ═══ LEAD FORM ═══ */
#lead-form-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
  border-top: 2px solid var(--accent);
}

.lead-form-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px;
}

.lead-form-inner h2 {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.lead-form-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { border-color: var(--accent); }

.lead-form select {
  color: rgba(255, 255, 255, 0.7);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lead-form select option { background: var(--bg-dark); color: var(--text-inverse); }

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-form-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-form-submit:hover { background: var(--accent-hover); }
.btn-form-submit:disabled { background: var(--text-tertiary); cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--text-inverse);
}

.form-success svg { margin: 0 auto 16px; }
.form-success h3 { font-size: 16px; margin-bottom: 8px; }
.form-success p { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

.form-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.form-or span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.form-or::before,
.form-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--text-tertiary);
  transition: transform 0.2s;
  font-weight: 300;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent); }

.faq-answer {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ FOOTER — Dark navy ═══ */
.site-footer {
  background: #061626;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #fff;
}

.footer-brand span { color: #f57c00; }

.footer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f57c00;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══ MODALS ═══ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.modal-close {
  float: right;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.modal-close:hover { background: var(--border); }

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-body a.btn { justify-content: center; font-size: 14px; font-weight: 600; padding: 14px; border-radius: var(--radius-md); }

.modal-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.modal-input:focus { border-color: var(--accent); }
.modal-input::placeholder { color: var(--text-tertiary); }

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  display: block;
  flex: 1;
  min-height: 0;
}

/* Chat modal specific */
.modal-chat-box {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  height: min(80vh, 760px);
  border-radius: 16px;
}

.modal-header {
  background: var(--text-primary);
  color: var(--text-inverse);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 56px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header-title {
  font-size: 14px;
  font-weight: 600;
}

.modal-header .modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  float: none;
}

.modal-header .modal-close:hover { background: rgba(255, 255, 255, 0.3); }

/* ═══ SCROLL TO TOP ═══ */
#scroll-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 124, 0, 0.4);
  z-index: 99;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}

#scroll-top.show { display: flex; }

#scroll-top:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* ═══ VIDEO ═══ */
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.video-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
}

video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}

/* ═══ CASE STUDIES SECTIONS (Problem/Solution cards) ═══ */
.ps-block { margin-bottom: 16px; }

.ps-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.ps-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.impact-box {
  background: rgba(34, 197, 94, 0.08);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-top: 16px;
}

.impact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.impact-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

.ps-border-red { border-left: 2px solid #fca5a5; padding-left: 16px; }
.ps-border-orange { border-left: 2px solid var(--accent); padding-left: 16px; }

/* ═══ DEPARTMENT CARDS ═══ */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.department-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.department-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.department-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}

.department-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.department-card.featured .department-icon {
  background: rgba(245, 124, 0, 0.1);
  color: var(--accent);
}

.department-number {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.department-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.department-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
}

.department-card.featured .department-tag { color: var(--accent); }

.department-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.department-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.department-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.department-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ═══ ASSESSMENT SECTION ═══ */
.assessment-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.assessment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.assessment-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.assessment-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.assessment-title span { color: var(--accent); }

.assessment-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.assessment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.assessment-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.assessment-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.assessment-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 124, 0, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.assessment-card-title {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.assessment-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ═══ PROCESS FLOW ═══ */
.process-flow {
  position: relative;
  padding: 40px 0;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--blue), var(--accent));
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.process-step {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(245, 124, 0, 0.3);
  position: relative;
  z-index: 2;
}

.process-step-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.process-step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.process-step-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  padding: 0 20px;
}

.process-step-deliverables li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.process-step-deliverables li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ═══ TRUST INDICATORS ═══ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.trust-card {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ═══ VALUES / FOUNDER CARDS (Tentang) ═══ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.value-icon { font-size: 28px; margin-bottom: 12px; }

.value-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.founder-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-dark), #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.founder-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.founder-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.founder-links a {
  font-size: 12px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.founder-links a:hover { color: var(--accent); }

/* ═══ CONTACT PAGE ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-method:last-child { border-bottom: none; }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-icon.wa { background: rgba(37, 211, 102, 0.1); }
.contact-icon.email { background: var(--accent-subtle); }

.contact-label {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-value a { color: var(--text-primary); }
.contact-value a:hover { color: var(--accent); }

/* Form inputs (contact page) */
.input-group { margin-bottom: 16px; }

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus { border-color: var(--accent); }

.input-group input::placeholder,
.input-group textarea::placeholder { color: var(--text-tertiary); }

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ═══ SCENARIO CARDS (Hasil) ═══ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.scenario-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.scenario-card:hover { box-shadow: var(--shadow-md); }

.scenario-icon { font-size: 32px; margin-bottom: 12px; }

.scenario-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.scenario-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.scenario-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═══ SOCIAL PROOF BAR (Hasil) ═══ */
.social-proof-bar {
  background: var(--bg-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.social-proof-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.social-proof-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.social-proof-label {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ═══ METRIC CARDS (Hasil) ═══ */
.metric-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

/* ═══ EMPLOYEE IMPACT CARDS (Hasil) ═══ */
.employee-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.employee-impact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.employee-impact-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.employee-impact-role {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.employee-impact-list {
  list-style: none;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══ WHY GRID (Tentang) ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.why-card-icon { font-size: 24px; margin-bottom: 12px; }
.why-card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ DEMO PAGE SPECIFICS ═══ */
#demo-hero {
  padding: 140px 24px 30px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #161b22 100%);
  text-align: center;
}

#demo-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

#demo-hero h1 span { color: var(--accent); }

#demo-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

#demo-simulator { padding-top: 40px; }

.demo-page-cta {
  text-align: center;
  padding: 60px 24px 80px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.demo-page-cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.demo-page-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

/* ═══ ROI COMPARISON (Harga) ═══ */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.roi-card {
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
}

.roi-card.featured {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(245, 124, 0, 0.2);
  transform: scale(1.03);
  position: relative;
}

.roi-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.roi-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.roi-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.roi-amount .unit { font-size: 14px; color: var(--text-tertiary); }
.roi-amount.highlight { color: var(--accent); }

.roi-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

.roi-list {
  list-style: none;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 2;
  text-align: left;
}

/* ═══ RESPONSE STEPS (Kontak) ═══ */
.response-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  text-align: center;
}

.response-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 8px;
}

.response-step-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ═══ BLOG INDEX ═══ */
.blog-hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 150px 24px 74px;
  text-align: center;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 120% at 50% -10%, rgba(245, 124, 0, 0.20), transparent 62%);
  pointer-events: none;
}

.blog-hero-inner { position: relative; max-width: 780px; margin: 0 auto; }

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.blog-kicker::before,
.blog-kicker::after {
  content: "";
  height: 1px;
  width: 30px;
  background: rgba(245, 124, 0, 0.45);
}

.blog-hero h1 {
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #fff;
  text-wrap: balance;
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.70);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-hero-meta {
  margin-top: 28px;
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero-meta b { color: var(--accent); font-weight: 700; }

/* Blog grid section */
.blog-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px 76px;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}

.blog-toolbar .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-right: 4px;
}

.chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.chip:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.chip[aria-pressed="true"] {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  border: 1px solid #e8edf3;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: cardIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px -20px rgba(11, 42, 74, 0.45);
}

.blog-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 124, 0, 0.09);
  border-radius: 100px;
  padding: 5px 11px;
  margin-bottom: 16px;
}

.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.32;
}

.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }

.blog-card-excerpt {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #64748b;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: none;
}

.blog-card-read svg { transition: transform 0.2s; }
.blog-card:hover .blog-card-read svg { transform: translateX(4px); }

.blog-card.hide { display: none; }

/* Featured (newest) — breaks the uniform grid; only when not filtering */
.blog-grid:not(.filtered) article:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #081d33, #0B2A4A);
  border: none;
}

.blog-grid:not(.filtered) article:first-child .blog-card-body { padding: 40px; }
.blog-grid:not(.filtered) article:first-child .blog-card-cat { color: #fff; background: rgba(245, 124, 0, 0.92); }

.blog-grid:not(.filtered) article:first-child .blog-card-title {
  color: #fff;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.18;
  max-width: 22ch;
}

.blog-grid:not(.filtered) article:first-child .blog-card-excerpt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  max-width: 64ch;
}

.blog-grid:not(.filtered) article:first-child .blog-card-meta {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.14);
}

.blog-grid:not(.filtered) article:first-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(6, 22, 38, 0.75);
}

.blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: #94a3b8;
}

.blog-empty h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* ═══ BLOG POST (Article) ═══ */
.blog-post-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 140px 24px 60px;
  text-align: center;
}

.blog-post-hero .post-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.blog-post-hero h1 {
  font-size: clamp(24px, 4vw, 42px);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.25;
  color: #fff;
}

.blog-post-hero .post-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-post-hero .post-meta span { display: flex; align-items: center; gap: 6px; }

.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 17px;
  line-height: 1.85;
  color: #1f2937;
}

.post-body h2 {
  font-size: 26px;
  color: var(--text-primary);
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.post-body h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 10px; }
.post-body strong { color: var(--text-primary); }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.post-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background: #fff8f3;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-style: italic;
  color: #374151;
}

.post-body .highlight-box {
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 28px 0;
}

.post-body .highlight-box h4 {
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-cta {
  background: linear-gradient(135deg, var(--bg-dark), #163a5f);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}

.post-cta h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.post-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 15px;
}

.post-cta button {
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.post-tag {
  background: #f3f4f6;
  color: #374151;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 60px;
  gap: 16px;
}

.post-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 12px;
  transition: background 0.2s;
}

.post-nav a:hover { background: rgba(245, 124, 0, 0.08); }

/* ═══ PRIVACY POLICY PAGE ═══ */
.privacy-hero {
  padding: 140px 24px 60px;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.privacy-hero h1 {
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.privacy-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.privacy-content h2 {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.privacy-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.privacy-content p,
.privacy-content li {
  font-size: 14px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 12px;
}

.privacy-content ul { padding-left: 20px; margin-bottom: 16px; }
.privacy-content a { color: var(--accent); font-weight: 600; }
.privacy-content a:hover { text-decoration: underline; }

.privacy-last-updated {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* ═══ PRODUCT PAGE (Playbook) ═══ */
.produk-hero {
  min-height: 500px;
  padding: 130px 24px 60px;
  background: linear-gradient(135deg, #061626 0%, #0a2a4a 50%, #061626 100%);
  text-align: center;
}

.produk-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}

.produk-hero h1 span { color: var(--accent); }

.produk-hero .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #061626;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 32px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.price-badge small {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}

.btn-buy {
  display: inline-block;
  background: var(--accent);
  color: #061626;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

.how-section {
  padding: 64px 24px;
  background: #0a1a2e;
}

.how-section h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 48px;
}

.how-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.how-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-card h3 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 10px;
}

.how-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.feature-section {
  padding: 64px 24px;
  background: #0d1f36;
}

.feature-section h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 48px;
}

.feature-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-grid-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-grid-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-grid-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-section {
  padding: 64px 24px;
  background: #0a1a2e;
}

.testimonial-section h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.testimonial-section .sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card .quote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 16px;
}

.proof-section {
  padding: 48px 24px;
  background: #0d1f36;
  text-align: center;
}

.proof-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.produk-cta-section {
  padding: 64px 24px;
  text-align: center;
  background: linear-gradient(135deg, #061626 0%, #0a2a4a 50%, #061626 100%);
}

.produk-cta-section h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

.produk-cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ═══ CARD DEEP VARIANT ═══ */
.card-deep {
  background: var(--bg-dark);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--text-inverse);
}

.card-deep .card-body { color: rgba(255, 255, 255, 0.75); }

/* ═══ CARD DARK VARIANT ═══ */
.card-dark {
  background: var(--bg-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
}

.card-dark .card-body { color: rgba(255, 255, 255, 0.85); }
.card-dark .card-tag { color: var(--accent); }
.card-dark .ps-text { color: rgba(255, 255, 255, 0.85); }
.card-dark .card-stripe { background: var(--accent); }

/* ═══ CARD STRIPE ═══ */
.card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: var(--border);
  transition: background 0.3s;
}

.card:hover .card-stripe { background: var(--text-primary); }
.card-rel { position: relative; overflow: hidden; }

/* ═══ CARD ICON DARK ═══ */
.card-icon-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* ═══ PRICING DARK VARIANT ═══ */
.pricing-card-dark {
  background: var(--bg-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
}

.pricing-card-dark .pricing-head { border-color: rgba(255, 255, 255, 0.1); }
.pricing-card-dark .pricing-sub { color: var(--blue); }
.pricing-card-dark .price-box { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1); }
.pricing-card-dark .price-label { color: var(--blue); }
.pricing-card-dark .price-amount { color: #fff; }
.pricing-card-dark .pricing-features li { color: rgba(255, 255, 255, 0.8); }
.pricing-card-featured .pricing-sub { color: #fb923c; }
.pricing-card-featured .price-box { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1); }
.pricing-card-featured .price-label { color: #fb923c; }
.pricing-card-featured .price-amount { color: #fff; }
.pricing-card-featured .price-recur { color: rgba(191, 219, 254, 0.8); }
.pricing-card-featured .pricing-features li { color: #dbeafe; }
.pricing-card-featured .pricing-head { border-color: rgba(255, 255, 255, 0.1); margin-top: 16px; }

/* ═══ PRICING CARD FEATURED (Old Design B) ═══ */
.pricing-card-featured {
  background: var(--bg-dark);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 30px 60px rgba(245, 124, 0, 0.2);
  transform: scale(1.03);
}

.pricing-card-featured .pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #ea580c, #f97316);
  color: #fff;
  padding: 10px 32px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-head { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.pricing-name-tag { font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.pricing-sub-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }

.price-box {
  background: rgba(59, 130, 246, 0.05);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  margin-bottom: 16px;
}

.price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.price-amount-lg {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-recur {
  font-size: 12px;
  font-style: italic;
  color: #9ca3af;
}

.price-breakdown {
  font-size: 10px;
  color: #9ca3af;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 4px;
  margin-top: 8px;
}

/* ═══ CHECK ICON VARIANTS ═══ */
.check-green { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.check-orange { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.check-blue { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ═══ PRICING BUTTON VARIANTS ═══ */
.btn-pricing {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pricing-outline {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: #fff;
}

.btn-pricing-outline:hover {
  background: var(--text-primary);
  color: #fff;
}

.btn-pricing-orange {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

.btn-pricing-orange:hover { background: #e06600; }

.btn-pricing-ghost {
  border: 2px solid rgba(0, 0, 0, 0.3);
  color: var(--text-tertiary);
  background: transparent;
}

.btn-pricing-ghost:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

/* ═══ GUARANTEE BADGE (Pricing) ═══ */
.badge-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.badge-guarantee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.badge-guarantee-text {
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══ PRICING NOTE ═══ */
.pricing-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(59, 130, 246, 0.04);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 24px;
}

.pricing-note-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.pricing-note-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

/* ═══ IMPACT BOX DARK ═══ */
.impact-box-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-box-dark .impact-label { color: var(--green); }
.impact-box-dark .impact-text { color: rgba(255, 255, 255, 0.9); }

/* ═══ BORDER PREFIXES (DARK) ═══ */
.ps-border-red-dark { border-left: 2px solid rgba(239, 68, 68, 0.4); padding-left: 16px; }
.ps-border-orange-dark { border-left: 2px solid var(--accent); padding-left: 16px; }

/* ═══ DEMO HERO BADGE ═══ */
.demo-live-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s infinite;
}

/* ═══ DEMO LIVE INDICATOR ═══ */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}

.live-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.live-indicator-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══ CTA TAG (dark variant for inside CTA) ═══ */
.cta-tag {
  display: inline-flex;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ═══ ASSESSMENT SECTION (Old) ═══ */
.assessment-section-old {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ═══ ASSESSMENT GRID (Kontak) ═══ */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.assessment-grid-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.assessment-grid-icon { font-size: 28px; margin-bottom: 10px; }
.assessment-grid-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.assessment-grid-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

/* ═══ FAQ INLINE (Kontak variant) ═══ */
.faq-item summary .faq-icon {
  font-size: 18px;
  color: var(--text-tertiary);
  transition: transform 0.2s;
  font-weight: 300;
}

.faq-item[open] summary .faq-icon { transform: rotate(45deg); }

/* ═══ FAQ SECTION (Old style) ═══ */
#faq .faq-list { max-width: 720px; margin: 0 auto; }
#faq .faq-item { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; margin-bottom: 12px; transition: border-color 0.3s; }
#faq .faq-item[open] { border-color: var(--accent); }
#faq summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 600; color: var(--text-primary); }
#faq summary::-webkit-details-marker { display: none; }
#faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 12px; }
#faq .faq-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
#faq .faq-item[open] .faq-icon { transform: rotate(45deg); }
#faq .faq-answer { padding: 0 24px 20px; font-size: 14px; line-height: 1.75; color: #4b5563; max-width: 62ch; }

/* ═══ DEMO HERO (Hasil variant) ═══ */
#demo-hero-inner {
  background: #0a0a0b;
  padding: 80px 0;
}