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

:root {
  --red: #8B0000;
  --red-dark: #6d0000;
  --ink: #111;
  --muted: #6b6b70;
  --line: #ececef;
  --bg: #fff;
  --bg-soft: #faf7f7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, opacity .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg { padding: .9rem 1.6rem; font-size: 1.02rem; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(139,0,0,.18); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: #d8d8dc; }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { opacity: .92; }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: #fff; }
.nav-signin { color: var(--ink) !important; }

/* Hero */
.hero {
  background: radial-gradient(1100px 500px at 80% -10%, #fbeaea 0%, transparent 60%), var(--bg);
  padding: 5rem 0 4.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  background: #fbeaea;
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--red); }
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 1.8rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1rem;
}
.hero-note { font-size: .85rem; color: #9a9aa0; }

/* Hero phone art */
.hero-art { display: flex; justify-content: center; }
.phone {
  width: 280px;
  height: 560px;
  background: #111;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  transform: rotate(2deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-radius: 32px;
  padding: 2.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #c43b3b);
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(139,0,0,.25);
}
.card-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.card-role { color: var(--muted); font-size: .82rem; margin-bottom: 1.4rem; }
.card-link {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}
.card-link:first-of-type { background: var(--red); color: #fff; border-color: var(--red); }
.card-link .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.card-link:first-of-type .dot { background: #fff; }

/* Section heads */
.section-head { text-align: center; max-width: 36rem; margin: 0 auto 3rem; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Features */
.features { padding: 5rem 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
  border-color: #e2dada;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fbeaea;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .45rem; }
.feature p { color: var(--muted); font-size: .94rem; }

/* How it works */
.how { padding: 5rem 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* CTA */
.cta { padding: 5rem 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 28px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 60px rgba(139,0,0,.25);
}
.cta-inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .6rem; }
.cta-inner p { font-size: 1.1rem; opacity: .9; margin-bottom: 1.8rem; }

/* Pricing */
.pricing {
  padding: 5.5rem 0 6rem;
  background:
    radial-gradient(900px 360px at 50% -5%, #fbeaea 0%, transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 28px rgba(0,0,0,.05);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0,0,0,.1);
}

/* Highlighted plan — filled brand card, scaled up */
.price-card.featured {
  background: linear-gradient(160deg, #9a0b0b 0%, var(--red-dark) 100%);
  border-color: transparent;
  color: #fff;
  padding-top: 2.6rem;
  box-shadow: 0 26px 60px rgba(139,0,0,.32);
  z-index: 2;
}
@media (min-width: 861px) {
  .price-card.featured { transform: scale(1.06); }
  .price-card.featured:hover { transform: scale(1.06) translateY(-5px); }
}
.price-card.featured .price-sub,
.price-card.featured .price-equiv,
.price-card.featured .price-amount .period { color: rgba(255,255,255,.72); }
.price-card.featured .price-list li { color: rgba(255,255,255,.92); }
.price-card.featured .price-list li.head-row { color: rgba(255,255,255,.6); }
.price-card.featured .price-list { border-top-color: rgba(255,255,255,.18); }
.price-card.featured .price-list li.yes::before {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.price-card.featured .price-badge { background: #fff; color: var(--red); }

.price-top h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.price-sub { color: var(--muted); font-size: .9rem; margin-top: .3rem; min-height: 2.6em; }
.price-amount { display: flex; align-items: baseline; gap: .4rem; margin: 1.2rem 0 .15rem; }
.price-amount .amount { font-size: 2.7rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price-amount .period { color: var(--muted); font-size: .9rem; font-weight: 600; }
.price-equiv { font-size: .82rem; color: var(--muted); margin-bottom: 1.3rem; }
.price-card:not(:has(.price-equiv)) .price-amount { margin-bottom: 1.45rem; }
.price-btn { width: 100%; padding: .85rem; font-size: .95rem; }

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.price-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.4;
}
.price-list li.head-row {
  padding-left: 0;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .15rem;
}
.price-list li.yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  background: #fbeaea;
  border-radius: 50%;
}
.price-list li.no { color: #aeaeb4; }
.price-list li.no::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #c4c4c9;
  background: #f1f1f3;
  border-radius: 50%;
}

/* Footer */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-size: .9rem; font-weight: 600; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { width: 100%; color: #9a9aa0; font-size: .82rem; }

/* ── Payment / upgrade page ──────────────────── */
.pay { padding: 3.5rem 0 5rem; background: var(--bg-soft); min-height: 70vh; }
.pay-inner { max-width: 720px; }

/* Plan chooser */
.pay-choose { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 560px; margin: 0 auto; }
.pay-choose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 28px rgba(0,0,0,.05);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pay-choose-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.1); border-color: var(--red); }
.pay-choose-card.featured { border-color: var(--red); }
.pay-choose-card h3 { font-size: 1.2rem; font-weight: 800; }
.pay-choose-price { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; margin-top: .4rem; }
.pay-choose-period { color: var(--muted); font-size: .85rem; margin-bottom: 1.2rem; }
.pay-choose-btn { width: 100%; padding: .7rem; }

/* Payment card */
.pay-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.4rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 40px rgba(0,0,0,.06);
}
.pay-back { display: inline-block; color: var(--muted); text-decoration: none; font-size: .85rem; font-weight: 600; margin-bottom: 1rem; }
.pay-back:hover { color: var(--red); }
.pay-card h1 { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.pay-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--bg-soft);
  border-radius: 14px;
}
.pay-summary strong { font-weight: 700; }
.pay-amount { font-size: 1.5rem; font-weight: 800; color: var(--red); letter-spacing: -.02em; }

.alert { padding: .8rem 1rem; border-radius: 10px; font-size: .9rem; font-weight: 500; margin-bottom: 1.2rem; }
.alert-error { background: #fff1f1; color: #c0392b; border: 1px solid #fccaca; }

.pay-gcash {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1.6rem;
}
.pay-qr { flex-shrink: 0; width: 190px; height: 190px; border-radius: 12px; overflow: hidden; position: relative; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.pay-qr img { width: 100%; height: 100%; object-fit: contain; }
.pay-qr-fallback { display: none; text-align: center; color: var(--muted); font-size: .8rem; font-weight: 600; padding: .5rem; }
.pay-qr-missing img { display: none; }
.pay-qr-missing .pay-qr-fallback { display: block; }

.pay-gcash-details { flex: 1; }
.pay-step { font-size: .92rem; color: var(--ink); margin-bottom: .8rem; display: flex; gap: .55rem; align-items: flex-start; line-height: 1.45; }
.pay-step span {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pay-acct {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: .8rem 1rem;
  margin: 0 0 .8rem 1.6rem;
}
.pay-acct > div { display: flex; flex-direction: column; gap: .1rem; }
.pay-acct-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.pay-acct strong { font-size: .95rem; }

.pay-form .field { margin-bottom: 1.1rem; }
.pay-form label { display: block; font-size: .82rem; font-weight: 600; color: #555; margin-bottom: .35rem; }
.field-optional { color: #aaa; font-weight: 500; text-transform: none; letter-spacing: 0; }
.pay-form input[type="text"] {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: #fafafa;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.pay-form input[type="text"]:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(139,0,0,.1); background: #fff; }
.pay-form input[type="file"] { font-size: .88rem; color: var(--muted); }
.pay-submit { width: 100%; padding: .9rem; margin-top: .4rem; }
.pay-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .9rem; line-height: 1.5; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

.pay-review { text-align: center; max-width: 520px; }
.pay-review-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #fbeaea;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.pay-review-icon svg { width: 32px; height: 32px; }
.pay-review h1 { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.pay-review-text { color: var(--muted); line-height: 1.6; margin: .8rem 0 1.6rem; }
.pay-review .pay-submit { display: inline-block; width: auto; padding-left: 2rem; padding-right: 2rem; }

/* ── Admin payments view ─────────────────────── */
.admin { padding: 2.5rem 0 5rem; background: var(--bg-soft); min-height: 70vh; }
.admin-head h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.admin-head p { color: var(--muted); font-size: .95rem; margin-top: .3rem; margin-bottom: 1.6rem; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.8rem; }
.admin-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.admin-stat-num { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.admin-stat-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.admin-stat-alert { border-color: var(--red); background: #fbeaea; }
.admin-stat-alert .admin-stat-num { color: var(--red); }

.admin-actions { display: flex; gap: .4rem; }

.admin-empty { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 3rem; text-align: center; color: var(--muted); }

.admin-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
  text-align: left;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  font-weight: 700;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.admin-table td { padding: .85rem 1rem; border-bottom: 1px solid #f3f3f5; vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr.status-rejected { background: #fffafa; color: #b3787c; }
.admin-table tr.status-rejected .admin-ref { text-decoration: line-through; }
.admin-table tr.env-staging { background: repeating-linear-gradient(45deg, #fff8e1, #fff8e1 8px, #fffbe6 8px, #fffbe6 16px); }
.env-pill { display: inline-block; margin-top: .25rem; padding: .1rem .45rem; border-radius: 4px; background: #b45309; color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .05em; }
.admin-table a { color: var(--red); font-weight: 600; text-decoration: none; }
.admin-table a:hover { text-decoration: underline; }
.admin-muted { color: #aaa; font-size: .8rem; }
.admin-ref { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; }
.nowrap { white-space: nowrap; }

.badge { display: inline-block; padding: .25rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: capitalize; }
.badge-completed   { background: #f0fdf4; color: #166534; }
.badge-rejected    { background: #fff1f1; color: #c0392b; }
.badge-pending     { background: #fff7ed; color: #b45309; }
.badge-initial     { background: #fef3c7; color: #92400e; }
.badge-re-validate { background: #fee2e2; color: #991b1b; }
.badge-refunded    { background: #f3f4f6; color: #6b7280; }

.admin-btn {
  border: 1.5px solid #e0e0e0;
  background: #fff;
  border-radius: 8px;
  padding: .4rem .8rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}
.admin-btn-reject:hover { border-color: #c0392b; color: #c0392b; }
.admin-btn-approve:hover { border-color: #166534; color: #166534; }

/* ── Legal pages (terms / privacy) ───────────── */
.legal { padding: 3.5rem 0 5rem; }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.legal-updated { color: var(--muted); font-size: .88rem; margin: .3rem 0 2rem; }
.legal h2 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; margin: 2rem 0 .6rem; }
.legal p { color: #3f3f46; line-height: 1.7; margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { color: #3f3f46; line-height: 1.7; margin-bottom: .4rem; }
.legal a { color: var(--red); font-weight: 600; text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal-links { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .9rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { order: -1; }
  .lead { max-width: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 1rem auto 0; }
}
@media (max-width: 620px) {
  .hero { padding: 3rem 0; }
  .nav-links { gap: .9rem; }
  .nav-links a:not(.btn):not(.nav-signin) { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .phone { width: 240px; height: 480px; }
  .pay-choose { grid-template-columns: 1fr; max-width: 360px; }
  .pay-card { padding: 1.6rem; }
  .pay-gcash { flex-direction: column; align-items: center; text-align: center; }
  .pay-acct { margin-left: 0; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
