:root {
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-dark: #1D4ED8;
  --green: #10B981;
  --green-light: #34D399;
  --white: #FFFFFF;
  --gray-bg: #F8FAFC;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: all .3s ease;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--dark); }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost {
  padding: 8px 18px; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: var(--dark); background: transparent; border: none; cursor: pointer;
  transition: background .2s; text-decoration: none; display: inline-flex; align-items: center;
}
.btn-ghost:hover { background: var(--border-light); }
.btn-primary {
  padding: 9px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  color: white; background: var(--blue); border: none; cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(37,99,235,0.4); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(37,99,235,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(16,185,129,0.05) 0%, transparent 60%),
    #fff;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5;
}
.blob-1 { width: 500px; height: 500px; background: rgba(37,99,235,0.08); top: -100px; right: -100px; animation: blobFloat 8s ease-in-out infinite; }
.blob-2 { width: 300px; height: 300px; background: rgba(16,185,129,0.07); bottom: 0; left: 200px; animation: blobFloat 10s ease-in-out infinite reverse; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-10px,15px) scale(0.97); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  font-size: 13px; font-weight: 500; color: var(--blue);
  margin-bottom: 24px; width: fit-content;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.2)} }

.hero-left h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-left h1 span { color: var(--blue); }
.hero-left h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65;
  margin-bottom: 36px; max-width: 460px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
  padding: 14px 28px; border-radius: 14px; font-size: 15px; font-weight: 600;
  color: white; background: var(--blue); border: none; cursor: pointer;
  transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35), 0 1px 3px rgba(0,0,0,0.1);
  font-family: 'Sora', sans-serif;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.42); }
.btn-hero-outline {
  padding: 13px 26px; border-radius: 14px; font-size: 15px; font-weight: 500;
  color: var(--dark); background: white; border: 1.5px solid var(--border); cursor: pointer;
  transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06); font-family: 'Sora', sans-serif;
}
.btn-hero-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.hero-stats { display: flex; gap: 32px; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark); }
.stat-label { font-size: 13px; color: var(--muted); }

/* ── DASHBOARD MOCKUP ── */
.hero-right { position: relative; }
.dashboard-frame {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(15,23,42,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s ease;
}
.dashboard-frame:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0deg); }
.db-header {
  padding: 14px 20px; background: var(--dark); display: flex; align-items: center;
  gap: 14px;
}
.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }
.db-title { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; flex: 1; text-align: center; }

.db-body { padding: 20px; background: #F8FAFC; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.db-stat-card {
  background: white; border-radius: 14px; padding: 16px;
  border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.db-stat-label { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.db-stat-num { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--dark); }
.db-stat-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px; margin-top: 4px;
}
.badge-up { background: #DCFCE7; color: #16A34A; }
.badge-pending { background: #FEF9C3; color: #CA8A04; }

.db-map {
  grid-column: 1 / -1;
  background: white; border-radius: 14px; padding: 16px;
  border: 1px solid var(--border); height: 140px; position: relative; overflow: hidden;
}
.map-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(rgba(241,245,249,0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,245,249,0.7) 1px, transparent 1px),
    #EFF6FF;
  background-size: 24px 24px;
}
.map-label { position: absolute; top: 10px; left: 12px; font-size: 11px; font-weight: 600; color: var(--muted); z-index:2; }
.map-pin {
  position: absolute; z-index: 2;
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.map-pin::after { content:''; width:8px;height:8px;border-radius:50%;background:white; }
.pin-blue { background: var(--blue); top: 35%; left: 30%; }
.pin-green { background: var(--green); top: 55%; left: 55%; }
.pin-orange { background: #F59E0B; top: 25%; left: 65%; }
.pin-red { background: #EF4444; top: 65%; left: 20%; }

.db-report-list { grid-column: 1 / -1; background: white; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.report-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-bottom: 1px solid var(--border-light); font-size: 12px;
}
.report-item:last-child { border-bottom: none; }
.report-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.report-text { flex: 1; }
.report-title { font-weight: 600; color: var(--dark); font-size: 12px; }
.report-loc { color: var(--muted); font-size: 11px; }
.status-pill {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap;
}
.status-done { background: #DCFCE7; color: #16A34A; }
.status-process { background: #DBEAFE; color: #2563EB; }
.status-pending { background: #FEF9C3; color: #D97706; }

/* ── SECTION COMMON ── */
section { padding: 96px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.12);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--dark); line-height: 1.15; margin-bottom: 14px;
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 580px; }
.section-head-center { text-align: center; margin-bottom: 64px; }
.section-head-center .section-tag { margin: 0 auto 18px; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── LOGOS ── */
#logos { padding: 40px 40px; background: var(--gray-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-inner { max-width: 1200px; margin: 0 auto; }
.logos-label { text-align: center; font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 28px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
  color: #94A3B8; letter-spacing: 0.02em; opacity: 0.7;
  transition: opacity .2s, color .2s;
}
.logo-item:hover { opacity: 1; color: var(--dark); }

/* ── FEATURES ── */
#features { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.1); border-color: rgba(37,99,235,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.fi-blue { background: rgba(37,99,235,0.1); }
.fi-green { background: rgba(16,185,129,0.1); }
.fi-purple { background: rgba(139,92,246,0.1); }
.fi-orange { background: rgba(245,158,11,0.1); }
.fi-pink { background: rgba(236,72,153,0.1); }
.fi-cyan { background: rgba(6,182,212,0.1); }
.feature-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PROBLEM/SOLUTION ── */
#problem { background: var(--gray-bg); }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ps-panel {
  border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ps-panel-header { font-size: 13px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.ps-bad { color: #EF4444; }
.ps-good { color: var(--green); }
.chat-bubble {
  border-radius: 12px 12px 12px 4px; padding: 10px 14px; margin-bottom: 8px;
  font-size: 13px; line-height: 1.5; max-width: 80%;
}
.chat-right { border-radius: 12px 12px 4px 12px; margin-left: auto; }
.chat-green { background: #DCF8C6; color: #1a5c37; }
.chat-white { background: #F0F0F0; color: var(--dark-2); }
.chat-name { font-size: 10px; font-weight: 700; color: var(--muted); margin-bottom: 3px; }
.chaos-label { font-size: 11px; color: #EF4444; font-weight: 600; text-align: center; margin-top: 12px; }

.solution-list { display: flex; flex-direction: column; gap: 12px; }
.sol-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border-radius: 12px; background: var(--gray-bg); border: 1px solid var(--border);
}
.sol-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(16,185,129,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.sol-text { font-size: 13px; color: var(--dark); font-weight: 500; }
.sol-sub { font-size: 12px; color: var(--muted); }

/* ── DASHBOARD PREVIEW ── */
#dashboard { background: white; }
.dashboard-preview {
  border-radius: 24px; border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(15,23,42,0.1);
  overflow: hidden; background: white;
}
.dp-header {
  background: var(--dark); padding: 16px 24px;
  display: flex; align-items: center; gap: 20px;
}
.dp-dots { display: flex; gap: 7px; }
.dp-dot { width: 12px; height: 12px; border-radius: 50%; }
.dp-nav-tabs { display: flex; gap: 2px; }
.dp-tab {
  padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5); cursor: pointer; transition: all .2s;
}
.dp-tab.active { background: rgba(255,255,255,0.12); color: white; }

.dp-body { display: grid; grid-template-columns: 240px 1fr; min-height: 480px; }
.dp-sidebar { background: var(--dark-2); padding: 20px; }
.dp-sidebar-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.dp-menu-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: 10px; font-size: 13px; color: rgba(255,255,255,0.55);
  cursor: pointer; transition: all .2s; margin-bottom: 2px; font-weight: 500;
}
.dp-menu-item.active { background: rgba(37,99,235,0.3); color: white; }
.dp-menu-item:hover:not(.active) { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.dp-menu-icon { font-size: 16px; }

.dp-content { padding: 24px; background: var(--gray-bg); }
.dp-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.dp-card {
  background: white; border-radius: 16px; padding: 18px;
  border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.dp-card-label { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.dp-card-value { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--dark); }
.dp-card-change { font-size: 11px; font-weight: 600; margin-top: 4px; }
.change-up { color: var(--green); }
.change-down { color: #EF4444; }

.dp-charts-row { display: grid; grid-template-columns: 1fr 280px; gap: 14px; margin-bottom: 20px; }
.dp-chart-card { background: white; border-radius: 16px; padding: 18px; border: 1px solid var(--border); }
.dp-chart-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }

/* Bar chart visual */
.bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 100px; }
.bar-group { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.bar { width: 100%; border-radius: 6px 6px 0 0; transition: opacity .2s; cursor: pointer; }
.bar:hover { opacity: 0.8; }
.bar-label { font-size: 10px; color: var(--muted); }

/* Pie chart */
.pie-visual { position: relative; width: 100px; height: 100px; margin: 0 auto 14px; }
.pie-svg { transform: rotate(-90deg); }
.pie-legend { display: flex; flex-direction: column; gap: 8px; }
.pie-legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.pie-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pie-legend-label { color: var(--muted); flex: 1; }
.pie-legend-val { font-weight: 700; color: var(--dark); }

/* Table */
.dp-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.dp-table th { text-align: left; padding: 10px 12px; color: var(--muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.dp-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); }
.dp-table tr:last-child td { border-bottom: none; }
.dp-table tr:hover td { background: var(--gray-bg); }

/* ── HOW IT WORKS ── */
#how { background: var(--gray-bg); }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-row::before {
  content: '';
  position: absolute; top: 52px; left: 16.5%; right: 16.5%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 0;
}
.step-card { text-align: center; padding: 0 32px; position: relative; }
.step-number-ring {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  background: white; border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--blue);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--gray-bg), 0 4px 16px rgba(37,99,235,0.2);
}
.step-icon-wrap {
  width: 80px; height: 80px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  background: white; box-shadow: 0 4px 20px rgba(15,23,42,0.08); border: 1px solid var(--border);
}
.step-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
#pricing { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border-radius: 24px; padding: 36px; border: 1px solid var(--border);
  background: white; position: relative; transition: all .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(15,23,42,0.1); }
.price-card.popular {
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08), 0 12px 48px rgba(37,99,235,0.15);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 100px;
  white-space: nowrap; font-family: 'Sora', sans-serif;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.price-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.price-amount { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 18px; font-weight: 500; color: var(--muted); }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--dark-2); }
.check-icon { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.price-btn {
  display: block; width: 100%; padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 600;
  text-align: center; cursor: pointer; text-decoration: none; transition: all .25s; margin-top: 28px;
  font-family: 'Sora', sans-serif;
}
.price-btn-outline { border: 1.5px solid var(--border); color: var(--dark); background: white; }
.price-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.price-btn-primary { background: var(--blue); color: white; border: none; box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.price-btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 24px rgba(37,99,235,0.4); }
.price-btn-dark { background: var(--dark); color: white; border: none; }
.price-btn-dark:hover { background: var(--dark-2); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--gray-bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white; border-radius: 20px; padding: 28px;
  border: 1px solid var(--border); box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: all .3s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,23,42,0.09); }
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--dark-2); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.testi-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, var(--dark) 0%, #1E3A5F 100%);
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: -50%; left: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 60%);
}
#cta::after {
  content: '';
  position: absolute; bottom: -30%; right: -10%; width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.12) 0%, transparent 60%);
}
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: white; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 15px 32px; border-radius: 14px; font-size: 15px; font-weight: 600;
  color: white; background: var(--blue); border: none; cursor: pointer;
  transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.5); font-family: 'Sora', sans-serif;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.6); }
.btn-cta-outline {
  padding: 14px 28px; border-radius: 14px; font-size: 15px; font-weight: 500;
  color: white; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 64px 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: white; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Dashboard Pane Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE DESIGN (MOBILE & TABLET) ── */
@media (max-width: 1024px) {
  /* Layout Umum */
  section { padding: 80px 24px; }
  
  /* Hero Section */
  #hero { 
    grid-template-columns: 1fr; 
    text-align: center; 
    padding-top: 120px; 
    gap: 40px; 
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-badge { margin: 0 auto 24px; }
  
  /* Hilangkan efek 3D di layar kecil agar tidak terpotong */
  .dashboard-frame { transform: none !important; margin-top: 20px; }
  
  /* Grid Sections */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .steps-row::before { display: none; } /* Hilangkan garis penghubung langkah */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* Dashboard Mockup Adjustments */
  .dp-body { grid-template-columns: 1fr; min-height: auto; }
  .dp-sidebar { 
    display: flex; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding: 12px; 
    gap: 8px; 
    -webkit-overflow-scrolling: touch;
  }
  .dp-sidebar-title { display: none; } /* Sembunyikan label di mobile */
  .dp-menu-item { white-space: nowrap; margin-bottom: 0; padding: 8px 12px; }
  .dp-stats-row { grid-template-columns: repeat(2, 1fr); }
  .dp-charts-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Navigasi */
  nav { padding: 0 20px; }
  .nav-links { display: none; } /* Sembunyikan menu link di HP */
  
  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }
  
  /* Sections */
  .features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  
  /* Dashboard Mockup Mobile */
  .dp-stats-row { grid-template-columns: 1fr; }
  .dp-content { padding: 16px; }
  
  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}