:root {
  /* Palette Moden UI SaaS - Indigo x Oren x Pink */
  --bg-main: #0a0a12;
  --bg-card: #14141f;
  --bg-card-hover: #1b1b2a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(99, 102, 241, 0.35);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;

  --primary: #6366f1; /* Indigo - warna jenama utama */
  --primary-hover: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.18);

  --accent: #f97316; /* Oren - aksen tenaga/CTA */
  --accent-light: #fb923c;

  --secondary: #ec4899; /* Pink - untuk gradient & CTA khas */
  --secondary-light: #f472b6;

  --success: #10b981; /* Hijau - hanya untuk status positif/berjaya */
  --success-glow: rgba(16, 185, 129, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* Header & Navigasi Moden */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.brand b {
  color: var(--primary);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), #4338ca);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 15px var(--primary-glow);
}

.brand-mark i {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px var(--primary-glow);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-bg-glow::after {
  content: "";
  position: absolute;
  top: 60%;
  left: -30%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.16) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  border: 1px solid var(--border-active);
}

.eyebrow i {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 em, .section-heading h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  max-width: 100%;
  white-space: nowrap;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-ghost {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: transparent;
  width: 100%;
}

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

.btn-light {
  background: #fff;
  color: #000;
  font-weight: 700;
}

.btn-light:hover {
  background: var(--text-main);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-row i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Dashboard Visual Card */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.window-top {
  height: 44px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.window-top .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.window-top .red { background: #ef4444; }
.window-top .yellow { background: #f59e0b; }
.window-top .green { background: #10b981; }

.window-top small {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 11px;
}

.mini-dashboard {
  padding: 28px;
}

.dash-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-title small {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 1px;
}

.dash-title strong {
  font-size: 20px;
}

.live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 4px 10px;
  border-radius: 20px;
}

.pulse {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.stats > div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.stats small {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
}

.stats strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  margin: 4px 0;
}

.stats strong i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.stat-change {
  font-size: 10px;
  color: var(--success);
}

.chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.bar:hover { opacity: 1; }
.b1 { height: 35%; } .b2 { height: 55%; } .b3 { height: 42%; }
.b4 { height: 72%; } .b5 { height: 60%; } .b6 { height: 84%; } .b7 { height: 95%; }

.table-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.table-line.header {
  color: var(--text-muted);
  font-weight: 600;
  background: transparent;
}

.badge-success {
  background: var(--success-glow);
  color: var(--success);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
}

.badge-pending {
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
}

/* Section Common */
.section {
  padding: 100px 0;
  position: relative;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 60px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 16px;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.07) 0%, var(--bg-card) 100%);
  border-color: var(--primary);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--primary);
}

.icon-wrapper i {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.card-link i {
  width: 14px;
  height: 14px;
}

/* Pricing Section */
.pricing-section {
  background: rgba(255, 255, 255, 0.01);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
}

.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge i { width: 12px; height: 12px; }

.price-label {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--primary);
}

.price-card h3 {
  font-size: 24px;
  margin: 8px 0;
}

.price {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0;
}

.price small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin: 24px 0 32px;
  flex-grow: 1;
}

.price-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.maintenance {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.maintenance i { width: 16px; height: 16px; color: var(--primary); }

/* Demo Section */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
}

.demo-screen {
  height: 200px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #000;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.fake-head {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--primary);
}

.fake-input {
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  margin-bottom: 8px;
}

.fake-input.short { width: 60%; }

.fake-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  margin-top: 8px;
}

.fake-button i { width: 12px; height: 12px; }

.attendance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 12px;
}

.attendance-row i { width: 14px; height: 14px; color: var(--success); }
.attendance-row.absent i { color: var(--accent); }
.attendance-row b { font-size: 10px; }

.fake-photo {
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-glow), rgba(255, 255, 255, 0.05));
  margin-bottom: 12px;
}

.fake-lines {
  height: 20px;
  width: 80%;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0 4px, transparent 4px 10px);
}

.demo-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.demo-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Process Section */
.process {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.step-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Section */
.narrow {
  width: min(780px, 92%);
}

.faq-accordion details {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
}

.faq-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion summary i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-accordion details[open] summary i {
  transform: rotate(180deg);
}

.faq-accordion p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #db2777 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta .eyebrow {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================================
   FOOTER PARTNERS / INFRASTRUCTURE TRUST STRIP
   (Rule ini tiada dalam CSS asal — ditambah semasa SEO Phase 3
   supaya seksyen "Dikuasakan Oleh..." tidak render tanpa gaya)
   ========================================================= */
.partners-heading {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.partner-badge i {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.partner-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.partner-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .partner-logos {
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 4px;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .partner-item {
    flex-shrink: 0;
  }
}

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

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
}

.floating-wa a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa i {
  width: 28px;
  height: 28px;
}

/* =========================================================
   7. TRUST & CREDIBILITY BAR
   ========================================================= */
.trust-bar-section {
  padding: 36px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(20, 20, 31, 0.4);
}

.trust-bar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--item-accent) 45%, transparent);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--item-accent) 22%, transparent);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--item-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--item-accent) 32%, transparent);
  transition: background 0.3s ease, transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: color-mix(in srgb, var(--item-accent) 26%, transparent);
  transform: scale(1.06);
}

.trust-icon i {
  width: 18px;
  height: 18px;
  color: var(--item-accent);
}

@media (prefers-reduced-motion: reduce) {
  .trust-item, .trust-icon {
    transition: none;
  }
  .trust-item:hover {
    transform: none;
  }
  .trust-item:hover .trust-icon {
    transform: none;
  }
}

@media (max-width: 640px) {
  .trust-bar-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .trust-item {
    flex-shrink: 0;
  }
}

/* =========================================================
   3. SECTION "MASALAH -> PENYELESAIAN"
   ========================================================= */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.ps-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.ps-card.problem {
  border-top: 4px solid var(--accent);
}

.ps-card.solution {
  border-top: 4px solid var(--success);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, var(--bg-card) 100%);
}

.ps-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ps-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
}

.ps-card.problem .ps-icon {
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
}

.ps-card.solution .ps-icon {
  background: var(--success-glow);
  color: var(--success);
}

.ps-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-main);
}

.ps-list li i {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ps-card.problem .ps-list li i {
  color: #ef4444;
}

.ps-card.solution .ps-list li i {
  color: var(--success);
}

/* =========================================================
   4. SECTION "SIAPA YANG SESUAI"
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.audience-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.audience-icon i {
  width: 22px;
  height: 22px;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   5. FEATURED PRODUCT – e-Pendaftaran
   ========================================================= */
.featured-product-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(20, 20, 31, 0.95) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  position: relative;
  overflow: hidden;
}

.featured-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-product-badge i {
  width: 14px;
  height: 14px;
}

.featured-product-info h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.featured-product-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.featured-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.featured-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.featured-feature-item i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.featured-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   6. PRICING ENHANCEMENTS
   ========================================================= */
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

.price-start-from {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

/* =========================================================
   8. DEMO ENHANCEMENTS
   ========================================================= */
.demo-card.featured-demo {
  grid-column: span 1;
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 100%);
}

/* =========================================================
   9. CTA ENHANCEMENTS
   ========================================================= */
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Media Queries (Mobile Fast Responsive) */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-product-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid, .pricing-grid, .demo-grid { grid-template-columns: 1fr; }
  .problem-solution-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; width: 100%; }
}

@media (max-width: 580px) {
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 60px 0; }
  .section-heading h2 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .featured-features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .stats { grid-template-columns: 1fr; }
  .featured-product-card { padding: 24px; }
  .ps-card { padding: 24px; }
  .price-card { padding: 24px; }
  .hero-actions, .featured-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn, .featured-actions .btn, .cta-actions .btn {
    width: 100%;
  }
  .floating-wa { right: 16px; bottom: 16px; }
  .floating-wa a { width: 48px; height: 48px; }
  .floating-wa i { width: 24px; height: 24px; }
}

/* =========================================================
   SEO PHASE 1 — Mobile nav toggle (hamburger menu)
   ========================================================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle i {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(9, 13, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.nav-open {
    display: flex;
  }
}

/* SEO PHASE 1 — Disabled state for demo links without a confirmed URL */
.card-link-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}