/* =========================================================
   SuksesPOS — Website Resmi
   Tema: Biru (#0055A5) + Biru Tua (#002B5C) + Oranye (#FF6600)
   ========================================================= */

:root {
  --blue: #0055A5;
  --blue-dark: #002B5C;
  --blue-light: #E8F1FB;
  --blue-soft: #F4F9FF;
  --orange: #FF6600;
  --orange-light: #FFF1E6;
  --text: #1B2A41;
  --text-muted: #5B6B84;
  --border: #E2EAF5;
  --white: #ffffff;
  --success: #16A34A;
  --shadow-sm: 0 2px 8px rgba(0, 43, 92, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 43, 92, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 43, 92, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--blue-dark); line-height: 1.25; font-weight: 800; }

.section { padding: 88px 0; }
.section-alt { background: var(--blue-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: var(--font);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(255,102,0,.35); }
.btn-primary:hover { background: #E85C00; transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 24px rgba(0,85,165,.3); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--blue-dark); }
.brand img { height: 42px; width: auto; }
.brand span b { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; color: var(--text-muted); font-size: 15px; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--blue-dark);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #0077CC 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,0,.25), transparent 65%);
  top: -200px; right: -150px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
  bottom: -180px; left: -100px;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 32px; max-width: 520px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.hero-badge img { width: 22px; height: 22px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual .phone-frame {
  background: #fff;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  width: 300px;
  transform: rotate(2deg);
  transition: transform .4s ease;
}
.hero-visual .phone-frame:hover { transform: rotate(0deg) translateY(-6px); }
.hero-visual .phone-frame img { border-radius: 32px; width: 100%; }

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; color: var(--blue-dark);
  animation: float 4s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.fc-blue { background: var(--blue-light); }
.fc-orange { background: var(--orange-light); }
.fc-ppob { background: var(--orange-light); padding: 6px; }
.fc-ppob img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(255,102,0,.4)); }
.float-card small { display: block; font-weight: 500; color: var(--text-muted); }
.float-1 { top: 6%; left: -8%; }
.float-2 { bottom: 14%; right: -6%; animation-delay: 1.5s; }
.float-3 { bottom: -6%; left: 12%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--border); padding: 28px 0; }
.trustbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .t-icon { font-size: 30px; width: 56px; height: 56px; }
.trust-item .t-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,43,92,.2)); }
.trust-item b { display: block; color: var(--blue-dark); font-size: 17px; }
.trust-item small { color: var(--text-muted); font-size: 13px; }

/* ---------- Feature grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .f-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card .f-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,43,92,.2));
  transition: transform .2s ease;
}
.feature-card:hover .f-icon img { transform: scale(1.08) rotate(-2deg); }
.f-icon.blue { background: var(--blue-light); }
.f-icon.orange { background: var(--orange-light); }
.f-icon.green { background: #E7F6EC; }
.f-icon.purple { background: #F1EBFF; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Showcase (alternating) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase + .showcase { margin-top: 96px; }
.showcase.reverse .showcase-visual { order: 2; }
.showcase .kicker { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); }
.showcase h2 { font-size: clamp(24px, 3vw, 34px); margin: 12px 0 16px; }
.showcase p { color: var(--text-muted); font-size: 16px; margin-bottom: 20px; }
.showcase ul li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--text); font-weight: 500; }
.showcase ul li::before { content: '✓'; color: var(--orange); font-weight: 800; }

/* ---------- PPOB banner (index.html) ---------- */
.ppob-banner {
  margin-top: 40px;
  background: linear-gradient(120deg, #FFF3E6, #FFE4C7);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(255,102,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ppob-banner:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,102,0,.3); }
.ppob-banner-icon { width: 84px; height: 84px; flex-shrink: 0; }
.ppob-banner-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(255,102,0,.4)); }
.ppob-banner-text { flex: 1; }
.ppob-banner-text h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 8px; color: var(--blue-dark); }
.ppob-banner-text p { color: var(--text-muted); font-size: 15px; margin: 0; max-width: 640px; }
@media (max-width: 640px) {
  .ppob-banner { flex-direction: column; text-align: center; padding: 28px 22px; }
  .ppob-banner .btn { width: 100%; }
}

/* ---------- PPOB highlight (fitur.html) ---------- */
.ppob-highlight {
  margin-top: 22px;
  background: linear-gradient(120deg, var(--orange-light), #FFE8D2);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(255,102,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ppob-highlight:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,102,0,.28); }
.ppob-highlight img { width: 64px; height: 64px; flex-shrink: 0; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(255,102,0,.4)); }
.ppob-highlight b { display: block; color: var(--blue-dark); font-size: 15.5px; margin-bottom: 4px; }
.ppob-highlight p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.6; }
.showcase-visual {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; justify-content: center; align-items: center;
  min-height: 320px;
  font-size: 88px;
  color: var(--blue);
}
.showcase-visual img { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(0,43,92,.25)); }
.showcase-visual.orange-bg { background: var(--orange-light); color: var(--orange); }

/* ---------- Screenshot gallery ---------- */
.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.screenshot-card { text-align: center; }
.screen-frame {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.screen-frame:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.screen-frame img { border-radius: 14px; width: 100%; background: #fff; }
.screenshot-card h3 { font-size: 17px; margin-bottom: 6px; }
.screenshot-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- Bahan usaha (tabs) ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; text-align: center; transition: all .2s ease; cursor: default;
}
.industry-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.industry-card .i-icon { font-size: 32px; width: 64px; height: 64px; margin: 0 auto 10px; }
.industry-card .i-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,43,92,.18)); }
.industry-card b { color: var(--blue-dark); font-size: 15px; }

/* ---------- Single price (harga.html) ---------- */
.single-price {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
}
.single-price .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 800;
  padding: 6px 18px; border-radius: 999px; letter-spacing: .5px;
  white-space: nowrap;
}
.single-price .sp-icon { width: 88px; height: 88px; margin: 0 auto 20px; }
.single-price .sp-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(255,102,0,.35)); }
.single-price h2 { font-size: 28px; margin-bottom: 10px; }
.single-price .sp-desc { color: var(--text-muted); font-size: 15.5px; margin-bottom: 24px; }
.single-price .sp-price { margin-bottom: 24px; }
.single-price .sp-price .old-price {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  z-index: 0;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #FF0000;
  -webkit-text-decoration-color: #FF0000;
}
.single-price .sp-price .old-price::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 2px;
  background: #FF0000;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 1px;
}
.single-price .sp-price .amount { font-size: 56px; font-weight: 800; color: var(--blue-dark); line-height: 1.1; }
.single-price .sp-price .amount span { font-size: 24px; }
.single-price .sp-price .per { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
.single-price .sp-price .saving {
  display: inline-block;
  margin-top: 10px;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 999px;
}
.single-price .sp-features { text-align: left; max-width: 440px; margin: 0 auto 28px; }
.single-price .sp-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0; font-size: 15px; color: var(--text);
}
.single-price .sp-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.single-price .sp-note { color: var(--text-muted); font-size: 13px; margin-top: 14px; }

/* ---------- Include grid (harga.html) ---------- */
.include-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.include-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 18px; display: flex; align-items: center; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.include-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.include-item img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,43,92,.2)); }
.include-item b { color: var(--blue-dark); font-size: 14px; }
.include-item span { color: var(--text-muted); font-size: 12.5px; line-height: 1.5; }

/* ---------- Pricing ---------- */
.pricing-switch { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; background: var(--blue-light); padding: 6px; border-radius: 999px; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-switch button {
  border: none; background: transparent; padding: 10px 26px; border-radius: 999px;
  font-weight: 700; font-size: 14px; color: var(--text-muted); cursor: pointer; font-family: var(--font);
}
.pricing-switch button.active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular { border: 2px solid var(--orange); box-shadow: var(--shadow-lg); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 800;
  padding: 6px 18px; border-radius: 999px; letter-spacing: .5px;
}
.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-card .desc { color: var(--text-muted); font-size: 14px; min-height: 44px; }
.price-card .price { margin: 20px 0 8px; }
.price-card .price .amount { font-size: 44px; font-weight: 800; color: var(--blue-dark); }
.price-card .price .amount span { font-size: 20px; }
.price-card .price .per { color: var(--text-muted); font-size: 14px; }
.price-card .saving { color: var(--success); font-weight: 700; font-size: 13px; }
.price-card ul { margin: 24px 0 28px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: 14.5px; color: var(--text); }
.price-card ul li::before { content: '✓'; color: var(--blue); font-weight: 800; }
.price-card .btn { width: 100%; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--text); font-size: 14.5px; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testi-card .who b { display: block; font-size: 14px; color: var(--blue-dark); }
.testi-card .who small { color: var(--text-muted); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--blue-dark);
  display: flex; justify-content: space-between; align-items: center; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--orange); font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  color: #fff; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,0,.3), transparent 65%); bottom: -120px; right: -60px;
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 560px; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ---------- Activation page ---------- */
.activation-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; padding: 72px 0 96px; text-align: center; position: relative; overflow: hidden;
}
.activation-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.activation-hero p { color: rgba(255,255,255,.88); margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.activation-card {
  max-width: 560px; margin: -56px auto 0; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 40px; position: relative; z-index: 2;
  border: 1px solid var(--border);
}
.activation-card h2 { font-size: 22px; margin-bottom: 8px; }
.activation-card .sub { color: var(--text-muted); font-size: 14.5px; margin-bottom: 24px; }
.act-step { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; font-size: 14.5px; color: var(--text-muted); }
.act-step .num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-weight: 700; font-size: 13.5px; color: var(--blue-dark); margin-bottom: 8px; }
.form-group input {
  width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: var(--font); transition: border-color .15s;
  text-transform: uppercase; letter-spacing: 1px; text-align: center;
}
.form-group input:focus { outline: none; border-color: var(--blue); }
#alamat:focus { outline: none; border-color: var(--blue); }
.activation-card .btn { width: 100%; }
.activation-result {
  margin-top: 20px; padding: 16px; border-radius: 12px; font-size: 14px; display: none; text-align: left;
}
.activation-result.show { display: block; }
.activation-result.success { background: #E7F6EC; color: #14532D; border: 1px solid #BBE5CB; }
.activation-result.error { background: #FDECEC; color: #7F1D1D; border: 1px solid #F5C2C2; }
.activation-result .mono { font-family: Consolas, monospace; font-weight: 700; letter-spacing: .5px; }

/* Steps how activation works (3 langkah) */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.how-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; }
.how-step .hs-num {
  width: 48px; height: 48px; border-radius: 12px; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin-bottom: 18px;
}
.how-step .hs-num img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }
.how-step h3 { font-size: 18px; margin-bottom: 10px; }
.how-step p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .ci-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info .ci-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,43,92,.2)); }
.contact-info .ci-item b { display: block; color: var(--blue-dark); font-size: 16px; }
.contact-info .ci-item p { color: var(--text-muted); font-size: 14.5px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 12px; font-family: var(--font); font-size: 15px; resize: vertical; min-height: 130px; }
.contact-form textarea:focus { outline: none; border-color: var(--blue); }

/* ---------- Install steps (download.html) ---------- */
.install-steps { max-width: 720px; margin: 0 auto; }
.install-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 28px; margin-bottom: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.install-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.install-step .is-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,85,165,.3);
}
.install-step h3 { font-size: 17px; margin-bottom: 6px; }
.install-step p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-float:hover { background: #1FB959; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37, 211, 102, .55); }
.wa-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.wa-float .wa-label { display: flex; flex-direction: column; line-height: 1.25; }
.wa-float .wa-label small { font-weight: 600; font-size: 11px; opacity: .9; }
.wa-float .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-float { bottom: 16px; right: 16px; padding: 13px 18px 13px 14px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.8); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer ul li { padding: 6px 0; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.75); transition: color .15s; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Page hero (fitur/harga/kontak) ---------- */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 72px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.page-hero p { color: rgba(255,255,255,.88); margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; font-size: 17px; }
.breadcrumb { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    padding: 16px 24px 24px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta .btn-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .float-1 { left: 2%; }
  .float-2 { right: 2%; }
  .float-3 { left: 6%; bottom: -8%; }
  .features-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .showcase { grid-template-columns: 1fr; gap: 32px; }
  .showcase.reverse .showcase-visual { order: 0; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .include-grid { grid-template-columns: repeat(2, 1fr); }
  .single-price { padding: 44px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .features-grid, .testi-grid, .pricing-grid, .how-steps { grid-template-columns: 1fr; }
  .trustbar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-banner { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 88px; }
  .price-card { padding: 32px 24px; }
}
