:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --text: #172033;
  --muted: #667085;
  --muted-2: #8a94a6;
  --line: #e4e8f0;
  --line-strong: #d7dde8;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #edf4ff;
  --success: #138a5b;
  --success-soft: #ecfdf3;
  --warning: #9a6700;
  --warning-soft: #fff8e6;
  --danger: #b42318;
  --shadow: 0 16px 42px rgba(30, 41, 59, .08);
  --shadow-soft: 0 8px 24px rgba(30, 41, 59, .06);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--primary); text-underline-offset: 3px; }
a:hover { color: var(--primary-dark); }
button, input, textarea, select { font: inherit; }

.wrap {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(228,232,240,.95);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff !important;
}
.nav-cta:hover { background: var(--primary-dark); }

.hero {
  padding: 74px 0 54px;
  background:
    radial-gradient(circle at 78% 18%, rgba(37,99,235,.09), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid #d9e6ff;
  background: var(--primary-soft);
  color: #2353a6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.03em; }
h1 {
  margin: 18px 0 18px;
  font-size: clamp(46px, 6.5vw, 76px);
  max-width: 760px;
}
.hero-copy {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-weight: 800;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--text); }
.btn-secondary:hover { background: #f8fafc; color: var(--text); }
.hero-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero-points span::before { content: "✓"; margin-right: 7px; color: var(--success); font-weight: 900; }

.product-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.preview-brand { display: flex; align-items: center; gap: 10px; font-weight: 850; }
.preview-brand img { width: 30px; height: 30px; border-radius: 8px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 11px;
  font-weight: 850;
}
.preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.preview-tabs span {
  padding: 11px 8px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  border-right: 1px solid var(--line);
}
.preview-tabs span:last-child { border-right: 0; }
.preview-tabs .active { color: var(--primary); background: #fff; box-shadow: inset 0 -2px 0 var(--primary); }
.preview-stage { position: relative; min-height: 370px; }
.preview-body { padding: 18px 20px 20px; animation: preview-enter .36s ease both; }
.preview-body[hidden] { display: none; }
.preview-summary { display: flex; justify-content: space-between; gap: 14px; align-items: center; color: #59657a; font-size: 12px; }
.preview-summary strong { color: var(--primary); font-size: 12px; white-space: nowrap; }
.preview-progress { height: 6px; margin: 10px 0 14px; overflow: hidden; border-radius: 999px; background: #e9edf5; }
.preview-progress i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), #7c5cff); transition: width .55s ease; }
.preview-label { display: block; color: var(--muted); font-size: 11px; font-weight: 800; margin: 0 0 6px; }
.preview-box {
  min-height: 76px;
  border: 1px solid var(--line-strong);
  background: #fbfcfe;
  border-radius: 11px;
  padding: 12px;
  color: #59657a;
  font-size: 12px;
  line-height: 1.45;
}
.preview-fields { display: grid; grid-template-columns: .8fr 1.4fr; gap: 9px; margin-bottom: 12px; }
.preview-input { border: 1px solid var(--line-strong); border-radius: 9px; min-height: 36px; background: #fff; }
.preview-input.filled { display: flex; align-items: center; padding: 0 10px; color: #455268; font-size: 11px; font-weight: 750; }
.preview-list { display: grid; gap: 7px; }
.preview-item { display: grid; grid-template-columns: 9px 1fr auto; gap: 9px; align-items: center; min-height: 38px; padding: 0 10px; border: 1px solid var(--line); border-radius: 9px; background: #fbfcfe; color: #59657a; font-size: 11px; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.preview-item i { width: 7px; height: 7px; border-radius: 50%; background: #c8cfdb; }
.preview-item b { color: var(--muted); font-size: 10px; }
.preview-item.current { border-color: #aeb8ff; background: #f5f6ff; transform: translateX(2px); }
.preview-item.current i { background: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,.12); animation: preview-pulse 1s ease infinite; }
.preview-item.current b { color: var(--primary); }
.preview-item.done { border-color: #b9e7d0; background: #f1fbf6; }
.preview-item.done i { background: var(--success); }
.preview-item.done b { color: var(--success); }
.preview-list.compact { gap: 6px; }
.preview-list.compact .preview-item { min-height: 32px; }
.preview-table { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; }
.preview-table-head, .preview-table-row { display: grid; grid-template-columns: 1.25fr 1fr .8fr; gap: 8px; align-items: center; padding: 9px 10px; }
.preview-table-head { color: var(--muted); background: #f6f8fb; font-size: 9px; font-weight: 850; }
.preview-table-row { border-top: 1px solid var(--line); color: #59657a; font-size: 10px; transition: background .25s ease; }
.preview-table-row b { color: var(--muted); font-size: 10px; }
.preview-table-row.current { background: #f5f6ff; }
.preview-table-row.current b { color: var(--primary); }
.preview-table-row.done { background: #f1fbf6; }
.preview-table-row.done b { color: var(--success); }
.preview-action { margin-top: 14px; height: 40px; border-radius: 10px; background: var(--primary); color: #fff; display: flex; gap: 9px; align-items: center; justify-content: center; font-size: 11px; font-weight: 850; }
.preview-action i { width: 12px; height: 12px; border: 2px solid rgba(255,255,255,.42); border-top-color: #fff; border-radius: 50%; animation: preview-spin .8s linear infinite; }
.preview-action.complete { background: var(--success); }
.preview-action.complete i { animation: none; border: 0; width: auto; height: auto; }
.preview-action.complete i::before { content: "✓"; font-size: 15px; }
@keyframes preview-spin { to { transform: rotate(360deg); } }
@keyframes preview-pulse { 50% { transform: scale(.72); opacity: .7; } }
@keyframes preview-enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .preview-body, .preview-item, .preview-action i { animation: none !important; transition: none !important; }
}

.section { padding: 68px 0; }
.section-white { background: #fff; }
.section-title { max-width: 780px; margin-bottom: 30px; }
.kicker { display: block; margin-bottom: 7px; color: var(--primary); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.section-title h2 { margin: 0 0 10px; font-size: clamp(32px, 4vw, 48px); }
.section-title p { margin: 0; color: var(--muted); font-size: 17px; }
.download-panel { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr); gap: 34px; align-items: center; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(135deg, #fff 0%, #f5f7ff 100%); box-shadow: var(--shadow); }
.download-panel h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); }
.download-panel p { margin: 0; color: var(--muted); line-height: 1.65; }
.install-list { margin: 18px 0 0; padding-left: 22px; color: #455268; line-height: 1.75; }
.download-actions { display: grid; gap: 11px; justify-items: stretch; text-align: center; }
.download-actions .btn { width: 100%; }
.download-actions small { color: var(--muted); line-height: 1.5; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.card-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 9px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); }
.feature-list { margin: 16px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.feature-list li { margin: 7px 0; }
.feature-list li::before { content: "•"; margin-right: 9px; color: var(--primary); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.step strong { display: block; margin-bottom: 7px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
.step-index { display: inline-flex; margin-bottom: 14px; color: var(--primary); font-size: 12px; font-weight: 900; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.info-panel h3 { margin: 0 0 12px; font-size: 22px; }
.info-panel p { margin: 0 0 14px; color: var(--muted); }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { padding: 8px 0; color: #4d5a70; border-top: 1px solid #eef1f5; }
.check-list li:first-child { border-top: 0; }
.check-list li::before { content: "✓"; color: var(--success); font-weight: 900; margin-right: 9px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.price-card.featured { border-color: #a9c5ff; box-shadow: 0 18px 40px rgba(37,99,235,.10); }
.plan-label { color: var(--muted); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.price { margin: 10px 0 4px; font-size: 36px; font-weight: 900; letter-spacing: -.04em; }
.price-sub { color: var(--muted); font-size: 14px; min-height: 44px; }
.plan-list { list-style: none; padding: 0; margin: 20px 0; }
.plan-list li { margin: 9px 0; color: #4d5a70; }
.plan-list li::before { content: "✓"; margin-right: 8px; color: var(--success); font-weight: 900; }
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
}
.note {
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid #e8dfbf;
  background: var(--warning-soft);
  color: #735800;
  border-radius: 12px;
  font-size: 14px;
}

.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.faq-item h3 { margin: 0 0 6px; font-size: 17px; }
.faq-item p { margin: 0; color: var(--muted); }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: #172033;
  color: #fff;
  border-radius: 24px;
}
.cta-panel h2 { margin: 0 0 8px; font-size: 32px; }
.cta-panel p { margin: 0; color: #c5cfde; }
.cta-panel .btn-primary { background: #fff; color: #172033; border-color: #fff; }
.cta-panel .btn-primary:hover { background: #f4f6f8; color: #172033; }

.page-hero {
  padding: 58px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 14px 0 10px; font-size: clamp(38px, 5vw, 58px); }
.page-hero p { margin: 0; max-width: 760px; color: var(--muted); font-size: 17px; }
.doc { width: min(calc(100% - 36px), 900px); margin: 0 auto; padding: 36px 0 74px; }
.doc article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-soft); }
.doc h2 { margin-top: 36px; font-size: 26px; }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { margin-top: 26px; font-size: 19px; }
.doc p, .doc li { color: #4f5d72; }
.doc li { margin: 7px 0; }
.meta { color: var(--muted-2); font-size: 13px; margin-bottom: 26px; }
.doc-callout { margin: 22px 0; padding: 16px 18px; border: 1px solid #dbe6f7; background: #f7faff; border-radius: 12px; color: #3c4b61; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 24px; border: 1px solid var(--line); background: var(--surface-soft); border-radius: var(--radius-sm); }
.contact-card h2 { margin: 0 0 8px !important; }
.small { color: var(--muted); font-size: 13px; }

.site-footer { margin-top: 38px; padding: 30px 0 42px; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .product-preview { max-width: 650px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .download-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav-links { gap: 12px 14px; }
  .grid-3, .two-col { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { display: block; }
  .nav-links { margin-top: 13px; justify-content: flex-start; }
  .nav-cta { min-height: 34px; }
  .hero { padding-top: 54px; }
  h1 { font-size: 43px; }
  .steps { grid-template-columns: 1fr; }
  .preview-row { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}

/* v7.4.0 — Manual Maya / GCash payment flow */
.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

button.btn {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.payment-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.payment-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.payment-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.payment-step strong { display: block; margin-bottom: 4px; }
.payment-step p { margin: 0; color: var(--muted); font-size: 13px; }

.paymentDialog {
  width: min(900px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 28px 90px rgba(15, 23, 42, .28);
  overflow: auto;
}

.paymentDialog:not([open]) {
  display: none;
}

.paymentDialog::backdrop {
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(5px);
}

.paymentDialogInner {
  padding: 26px;
}

.paymentDialogHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.paymentDialogHead h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 36px);
}

.paymentAmount {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.modalClose {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f6f8fb;
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.modalClose:hover { background: #edf1f6; }

.paymentIntro {
  margin: 14px 0 20px;
  color: var(--muted);
}

.qrGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.qrCard {
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
  background: #fbfcfe;
}

.qrCardHead {
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.mayaText { color: #048b56; }
.gcashText { color: #0e66de; }

.qrCard img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #fff;
}

.qrCard p {
  margin: 0;
  padding: 12px 15px 15px;
  color: var(--muted);
  font-size: 13px;
}

.paymentAfter {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid #d8e5fb;
  border-radius: 14px;
  background: #f7faff;
}

.paymentAfter p {
  margin: 6px 0 14px;
  color: #526179;
}

@media (max-width: 980px) {
  .payment-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .pricing-grid-2,
  .qrGrid { grid-template-columns: 1fr; }

  .paymentDialogInner { padding: 20px; }
  .qrCard img { height: min(360px, 58vh); }
}

@media (max-width: 560px) {
  .payment-steps { grid-template-columns: 1fr; }
  .paymentDialog { width: calc(100vw - 18px); max-height: calc(100vh - 18px); }
  .paymentDialogInner { padding: 16px; }
}
