:root {
  --bg: #F8FAFC;
  --fg: #0B1220;
  --surface: #FFFFFF;
  --muted: #64748B;
  --subtle: #94A3B8;
  --primary: #2563EB;
  --primary-fg: #F8FAFC;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --danger: #DC2626;
  --danger-fg: #FEF2F2;
  --success: #059669;
  --success-fg: #ECFDF5;
  --warning: #D97706;
  --warning-fg: #FFFBEB;
  --sidebar: #0B1220;
  --sidebar-fg: #F8FAFC;
  --sidebar-muted: #94A3B8;
  --sidebar-hover: #1E293B;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(11, 18, 32, 0.04), 0 8px 24px rgba(11, 18, 32, 0.05);
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --display: "Outfit", ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; background: var(--bg); color: var(--fg); }
body { margin: 0; min-height: 100dvh; font-family: var(--font); background: var(--bg); color: var(--fg); }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
a { color: var(--primary); text-decoration: none; }
button:not(:disabled), [role="button"]:not(:disabled), input[type="submit"]:not(:disabled) { cursor: pointer; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.muted { color: var(--muted); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 44px; padding: 0 1rem; border-radius: 8px; border: 0; background: var(--primary); color: var(--primary-fg); font-weight: 600; font-size: 0.95rem; position: relative; overflow: hidden; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s, filter .45s; }
.btn.secondary { background: var(--surface); color: var(--fg); border: 1px solid var(--border-strong); }
.btn.danger { background: var(--danger); color: var(--danger-fg); }
.btn.ghost { background: transparent; color: var(--primary); }
.btn:disabled { opacity: 0.6; cursor: wait; }
.field { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  min-height: 44px; width: 100%; border: 1px solid var(--border-strong); border-radius: 8px;
  background: #fff; color: var(--fg); padding: 0.5rem 0.75rem;
}
.field textarea { min-height: 88px; resize: vertical; }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 0.6rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; text-transform: capitalize; }
.badge.paid, .badge.completed, .badge.active { background: var(--success-fg); color: var(--success); }
.badge.pending, .badge.sent, .badge.viewed, .badge.processing { background: var(--warning-fg); color: var(--warning); }
.badge.partially_paid, .badge.grace { background: #eef4f3; color: var(--primary); }
.badge.cancelled, .badge.failed, .badge.revoked, .badge.invalid, .badge.danger { background: var(--danger-fg); color: var(--danger); }
.badge.draft, .badge.expired, .badge.inactive, .badge.queued { background: #eeeae3; color: var(--muted); }
.flash { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.flash.ok { background: var(--success-fg); color: var(--success); }
.flash.err { background: var(--danger-fg); color: var(--danger); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
table.data th, table.data td { text-align: left; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border); }
table.data th { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; font-weight: 600; }
.tabular { font-variant-numeric: tabular-nums; }
.admin { min-height: 100dvh; }
@media (min-width: 960px) {
  .admin { display: grid; grid-template-columns: 240px 1fr; }
}
.sidebar { background: var(--sidebar); color: var(--sidebar-fg); display: none; flex-direction: column; }
@media (min-width: 960px) {
  .sidebar { display: flex; position: sticky; top: 0; height: 100dvh; }
}
.sidebar.open { display: flex; position: fixed; inset: 0; z-index: 40; }
.sidebar a { color: var(--sidebar-muted); display: flex; align-items: center; min-height: 44px; padding: 0 0.85rem; border-radius: 8px; }
.sidebar a.active, .sidebar a:hover { background: var(--sidebar-hover); color: var(--sidebar-fg); }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; height: 56px; padding: 0 1rem; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--bg) 90%, transparent); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); }
.main { padding: 1.25rem; }
@media (min-width: 960px) { .main { padding: 2rem; } }
.grid-2 { display: grid; gap: 1rem; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-4 { display: grid; gap: 0.85rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat { padding: 1rem; }
.stat strong { display: block; font-size: 1.35rem; margin-top: 0.35rem; }
.search { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.lp { padding-bottom: 2rem; }
.lp-hero-ph {
  height: 320px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sidebar, #0B1220); color: #F8FAFC;
  font-family: var(--display); font-size: 4.5rem;
}
.lp-brand { display: flex; align-items: center; gap: 0.75rem; }
.lp-brand span, .lp-nav-note { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lp-nav-note { max-width: 16rem; text-align: right; }
.lp-hero { display: grid; gap: 2rem; padding: 2.4rem 0 3rem; align-items: center; }
@media (min-width: 900px) { .lp-hero { grid-template-columns: 1.08fr 0.92fr; gap: 3rem; } }
.lp-kicker { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin: 0; }
.lp h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); line-height: 1.08; max-width: 14ch; margin-top: 0.7rem; }
.lp-lead { max-width: 36rem; margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.lp-points { margin: 1.4rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; color: var(--fg); }
.lp-points li { padding-left: 1.1rem; position: relative; }
.lp-points li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 0.45rem; height: 0.45rem; border-radius: 99px; background: var(--primary); }
.lp-shot { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.35rem 1.4rem 1.5rem; box-shadow: var(--shadow); }
.lp-shot-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0; }
.lp-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-top: 1px solid var(--border); }
.lp-row-total { font-weight: 700; }
.lp-band { background: color-mix(in srgb, var(--surface) 70%, var(--bg)); border-block: 1px solid var(--border); }
.lp-steps { display: grid; gap: 1.5rem; padding: 2.4rem 0; }
@media (min-width: 800px) { .lp-steps { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.lp-steps span { font-family: var(--display); color: var(--primary); font-size: 0.95rem; }
.lp-steps h2 { font-size: 1.25rem; margin: 0.4rem 0 0.45rem; }
.lp-steps p { color: var(--muted); margin: 0; line-height: 1.55; }
.lp-features { padding: 3rem 0 2rem; }
.lp-features > h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.lp-grid { display: grid; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 700px) { .lp-grid { grid-template-columns: 1fr 1fr; } }
.lp-grid article { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem 1.25rem; }
.lp-grid h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.lp-grid p { color: var(--muted); margin: 0; line-height: 1.55; }
.lp-accept { padding: 0.5rem 0 2rem; }
.lp-foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0 2rem; font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--border); }
@media (max-width: 700px) {
  .lp-nav-note { display: none; }
}
.home-hero { min-height: 100dvh; display: flex; flex-direction: column; }
.home-hero header, .home-hero footer { padding: 1.25rem 1.5rem; }
.home-hero section { flex: 1; display: grid; align-items: center; padding: 2rem 1.5rem; gap: 1.5rem; }
@media (min-width: 900px) {
  .home-hero section { grid-template-columns: 1.05fr 0.95fr; width: min(1100px, 100%); margin: 0 auto; }
}
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip { border: 1px solid var(--border); background: var(--surface); border-radius: 999px; padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.menu-btn { display: inline-flex; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; background: none; border: 0; color: var(--fg); }
@media (min-width: 960px) { .menu-btn { display: none; } }
.pay-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .pay-grid { grid-template-columns: 1fr 340px; } }
.qr { background: #fff; padding: 0.75rem; border-radius: 12px; border: 1px solid var(--border); max-width: 248px; overflow: hidden; }
.qr svg, .qr img { width: 220px; height: 220px; object-fit: contain; display: block; }
.line-row {
  display: grid;
  gap: 0.75rem 0.85rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #F8FAFC;
}
.line-row .btn { align-self: end; height: 44px; }
@media (min-width: 860px) {
  .line-row {
    grid-template-columns: minmax(0,1.4fr) minmax(0,1.4fr) 110px 160px auto;
    align-items: end;
  }
}
.copy { font-size: 0.8rem; color: var(--muted); }
.copyright { font-size: 0.72rem; color: var(--sidebar-muted); padding: 1rem; }
body.admin-body .copyright { color: var(--sidebar-muted); }
.stamp { display:inline-block;margin-top:1rem;padding:0.25rem 0.7rem;border:2px solid var(--danger);color:var(--danger);font-weight:700;letter-spacing:0.14em;font-size:0.75rem;transform:rotate(-6deg); }
.bars { display:flex;align-items:flex-end;gap:0.55rem;height:170px;padding-top:0.5rem; }
.bar-col { flex:1;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;gap:0.35rem;min-width:0; }
.bar { width:100%;max-width:36px;background:var(--primary);border-radius:6px 6px 2px 2px; }
.bar-col span { font-size:0.7rem;color:var(--muted); }
.brand-logo { height: 52px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.brand-logo.sm { height: 44px; max-width: 200px; }
.brand-mark { width: 44px; height: 44px; display: block; flex-shrink: 0; }
.brand-mark.sm { width: 36px; height: 36px; }
.side-brand { display: flex; align-items: center; gap: 0.55rem; min-width: 0; text-decoration: none; background: transparent; padding: 0; max-width: 100%; color: #F8FAFC; }
.side-brand .brand-logo { display: none; }
.side-title { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.04em; color: #F8FAFC; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 168px; }
.side-brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 168px; color: #F8FAFC; }
.seal {
  width: 148px; min-height: 148px; padding: 0.85rem 0.7rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  text-align: center; border: 3px double var(--danger); color: var(--danger);
  border-radius: 50%; transform: rotate(-12deg); background: color-mix(in srgb, #fff 82%, var(--danger-fg));
  box-shadow: inset 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
}
.seal.paid { border-color: var(--success); color: var(--success); background: color-mix(in srgb, #fff 82%, var(--success-fg)); }
.seal.partial { border-color: var(--warning); color: var(--warning); background: color-mix(in srgb, #fff 82%, var(--warning-fg)); }
.seal.expired, .seal.cancelled { border-color: var(--muted); color: var(--muted); background: #fff; }
.seal-site { font-size: 0.62rem; letter-spacing: 0.04em; font-weight: 700; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.seal-word { font-size: 1.05rem; letter-spacing: 0.18em; font-weight: 800; line-height: 1.1; }
.seal-when { font-size: 0.62rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.pay-disc { font-size: 0.72rem; color: var(--subtle); margin-top: 0.85rem; line-height: 1.45; }
.pay-logos { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: flex-start; align-items: center; }
.pay-logos img { height: 36px; width: auto; }
.copy { color: var(--muted); font-size: 0.9rem; }

body.pay-page { background: var(--bg); color: var(--fg); min-height: 100dvh; }
.pay-shell { width: min(1080px, calc(100% - 1.5rem)); margin: 0 auto; padding: 1.25rem 0 2.5rem; }
.pay-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.pay-brand { display: flex; align-items: center; gap: 0.75rem; }
.pay-brand strong { display: block; }
.pay-brand span { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pay-secure { font-size: 0.78rem; color: var(--muted); margin: 0; }
.pay-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.25rem; box-shadow: var(--shadow);
}
.pay-card-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.kicker { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin: 0 0 0.35rem; }
.pay-lines { list-style: none; padding: 0; margin: 1rem 0 0; }
.pay-lines li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.pay-totals { margin-top: 0.85rem; display: grid; gap: 0.4rem; }
.pay-totals div { display: flex; justify-content: space-between; color: var(--muted); }
.pay-totals .due { color: var(--fg); font-size: 1.05rem; padding-top: 0.4rem; border-top: 1px solid var(--border); }
.pay-pdf a { color: var(--primary); }
.pay-remain { font-size: clamp(1.8rem, 5vw, 2.4rem); margin: 0.15rem 0 0.4rem; }
.pay-cta { width: 100%; min-height: 48px; margin-top: 0.4rem; }
.gw-list { display: grid; gap: 0.4rem; margin: 0.8rem 0; }
.gw { display: flex; gap: 0.55rem; min-height: 44px; align-items: center; padding: 0 0.4rem; border-radius: 10px; border: 1px solid var(--border); }
.gw:hover { background: #F8FAFC; }
.wait-msg { margin: 0.8rem 0; }
.addr { word-break: break-all; font-family: ui-monospace, monospace; background: #F8FAFC; padding: 0.7rem; border-radius: 10px; border: 1px solid var(--border); }
.pay-success { text-align: center; padding: 1rem 0; }
@media (min-width: 900px) {
  body.pay-page .pay-grid { grid-template-columns: 1.12fr 0.88fr; }
}
@media (max-width: 899px) {
  .pay-top { flex-direction: column; align-items: flex-start; }
  .pay-grid { grid-template-columns: 1fr; }
  .seal { width: 120px; min-height: 120px; }
}

.wallet-grid { display: grid; grid-template-columns: 1fr; gap: 0.55rem; margin: 0.7rem 0 1rem; }
@media (min-width: 520px) { .wallet-grid { grid-template-columns: 1fr 1fr 1fr; } }
.wallet { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.75rem 0.4rem; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; min-height: 96px; background: #fff; }
.wallet input { position: absolute; opacity: 0; pointer-events: none; }
.wallet img { height: 28px; width: auto; max-width: 96px; object-fit: contain; }
.wallet span { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.wallet:has(input:checked) { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.pay-timer { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0.8rem; border-radius: 10px; background: var(--warning-fg); color: var(--warning); margin: 0.6rem 0; font-weight: 700; }
.pay-timer-label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.pay-marquee { overflow: hidden; margin-top: 1.6rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pay-marquee-track { display: flex; gap: 0.7rem; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.pay-marquee-track img { height: auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pay-card { position: relative; overflow: hidden; }
.pay-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(110deg, transparent 40%, rgba(37,99,235,0.08) 50%, transparent 60%); background-size: 220% 100%; animation: shine 4.5s ease-in-out infinite; }
@keyframes shine { 0% { background-position: 120% 0; } 100% { background-position: -20% 0; } }
.wa-chat { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50; display: flex; align-items: center; gap: 0.65rem; background: #25D366; color: #fff; padding: 0.45rem 1rem 0.45rem 0.45rem; border-radius: 999px; box-shadow: 0 12px 28px rgba(37,211,102,0.38); text-decoration: none; animation: waPulse 2.4s ease-in-out infinite; }
.wa-chat:hover { color: #fff; transform: translateY(-2px); animation: none; }
.wa-chat-ico { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: #25D366; display: grid; place-items: center; font-size: 1.35rem; }
.wa-chat-copy { display: grid; line-height: 1.15; }
.wa-chat-copy strong { font-size: 0.88rem; }
.wa-chat-copy small { font-size: 0.68rem; opacity: 0.9; letter-spacing: 0.04em; text-transform: uppercase; }
.wa-bubble { display: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 28px rgba(37,211,102,0.38); } 50% { box-shadow: 0 12px 28px rgba(37,211,102,0.38), 0 0 0 10px rgba(37,211,102,0.18); } }
.work-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; display: block; margin-bottom: 0.7rem; }
html { scroll-behavior: smooth; }
.hd-nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 90; }
.hd-page { padding-top: 76px; }
.to-top-fab {
  position: fixed; right: 1.25rem; bottom: 5.7rem; z-index: 49;
  width: 46px; height: 46px; border-radius: 50%;
  background: #0B1220; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(11,18,32,.22); text-decoration: none;
}
.to-top-fab:hover { color: #fff; transform: translateY(-2px); }
.pay-page { background:
  radial-gradient(900px 420px at 90% -10%, rgba(15,118,110,.14), transparent 55%),
  radial-gradient(700px 380px at 0% 100%, rgba(37,99,235,.10), transparent 50%),
  linear-gradient(#F4F0E8, #EEF2FF);
}
.lp-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0 0.4rem; }
.lp-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.lp-links a:not(.btn) { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.lp-shot img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; display: block; }
.lp-ico { font-size: 1.25rem; color: var(--primary); margin: 0 0 0.5rem; }
.lp-fade { animation: rise 0.7s ease both; }
.lp-footer { background: var(--sidebar); color: #E2E8F0; margin-top: 2rem; padding: 2rem 0 1.6rem; }
.lp-footer-grid { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.lp-footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.lp-footer-brand p { margin: 0.25rem 0 0; color: #94A3B8; font-size: 0.85rem; }
.lp-footer-brand strong { color: #fff; }
.lp-social { display: flex; gap: 0.65rem; }
.lp-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; }
.lp-social a:hover { background: var(--primary); color: #fff; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.site-header { position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
#mainNav { display: none; align-items: center; gap: 1rem; flex-wrap: wrap; }
#mainNav a:not(.btn) { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
#mainNav a:not(.btn):hover { color: var(--primary); }
.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--fg); }
@media (min-width: 960px) {
  #mainNav { display: flex; }
  .menu-toggle { display: none; }
}
@media (max-width: 959px) {
  #mainNav.open { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 64px; background: var(--surface); padding: 1rem; border-bottom: 1px solid var(--border); }
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 0.98; letter-spacing: -0.04em; margin: 0.4rem 0 1rem; }
.hero-line { display: block; }
.hero-word { display: inline-flex; margin-right: 0.28em; }
.hero-char { display: inline-block; animation: heroCharReveal 0.7s ease forwards; opacity: 0; transform: translateY(18px); }
.hero-word:nth-child(1) .hero-char:nth-child(1){animation-delay:.08s}
.hero-word:nth-child(1) .hero-char:nth-child(2){animation-delay:.12s}
.hero-word:nth-child(1) .hero-char:nth-child(3){animation-delay:.16s}
.hero-word:nth-child(1) .hero-char:nth-child(4){animation-delay:.20s}
.hero-word:nth-child(1) .hero-char:nth-child(5){animation-delay:.24s}
.hero-word:nth-child(2) .hero-char:nth-child(1){animation-delay:.32s}
.hero-word:nth-child(2) .hero-char:nth-child(2){animation-delay:.36s}
.hero-word:nth-child(2) .hero-char:nth-child(3){animation-delay:.40s}
.hero-word:nth-child(2) .hero-char:nth-child(4){animation-delay:.44s}
.hero-word:nth-child(2) .hero-char:nth-child(5){animation-delay:.48s}
.hero-word:nth-child(2) .hero-char:nth-child(6){animation-delay:.52s}
.hero-word:nth-child(2) .hero-char:nth-child(7){animation-delay:.56s}
@keyframes heroCharReveal { to { opacity: 1; transform: none; } }
.gradient-text, .gradient-text .hero-rotator {
  background: linear-gradient(100deg, #2563EB, #7C3AED, #06B6D4, #2563EB);
  background-size: 180% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientFlow 7s ease-in-out infinite alternate;
}
@keyframes gradientFlow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.hero-rotator { display: inline-block; min-width: 14ch; transition: opacity .28s ease, transform .28s ease; }
.hero-rotator.slide-out { opacity: 0; transform: translateY(-0.3em); }
.hero-rotator.slide-in { animation: phraseIn .42s ease both; }
@keyframes phraseIn { from { opacity: 0; transform: translateY(0.3em); } to { opacity: 1; transform: none; } }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; margin-top: 1.4rem; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.trust-strip i { width: 5px; height: 5px; border-radius: 99px; background: var(--primary); display: inline-block; }
.about-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.signature-line { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.2rem; }
.signature-line span { width: 40px; height: 2px; background: var(--primary); }
.process-grid { display: grid; gap: 1rem; margin-top: 1.4rem; }
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-grid article { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem; }
.process-grid span { font-family: var(--display); color: var(--primary); font-size: 1.1rem; }
.contact-panel { display: grid; gap: 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
@media (min-width: 800px) { .contact-panel { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }
.contact-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-footer-wide { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .lp-footer-wide { grid-template-columns: 1.4fr 1fr 1fr auto; align-items: start; } }
.footer-col { display: grid; gap: 0.35rem; }
.footer-col strong { color: #fff; margin-bottom: 0.3rem; }
.footer-col a { color: #94A3B8; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1rem 0 0; margin-top: 1.2rem; border-top: 1px solid #E2E8F0; font-size: 0.75rem; color: #94A3B8; }
.footer-socials .lp-social { gap: 0.35rem; }
.footer-socials .lp-social a { width: 28px; height: 28px; font-size: 0.78rem; }
.page-body { padding: 3rem 0 4rem; max-width: 760px; }
.page-body h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0.4rem 0 1.2rem; }
.page-copy { color: var(--fg); line-height: 1.7; }
.reveal-on-scroll { opacity: 0; transform: translateY(14px); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

.hero-stage { position: relative; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.glow-a { width: 420px; height: 420px; right: -80px; top: -40px; background: rgba(37,99,235,0.22); }
.glow-b { width: 340px; height: 340px; left: -60px; bottom: -80px; background: rgba(124,58,237,0.16); }
.hero-stage .lp-hero { position: relative; z-index: 1; }
.lp-page { background: linear-gradient(180deg, #EEF4FF 0%, #F8FAFC 28%, #F8FAFC 100%); }
.lp-steps article { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.1rem 1.2rem; }
.lp-steps article:nth-child(1) { border-top: 3px solid #10B981; }
.lp-steps article:nth-child(2) { border-top: 3px solid #F59E0B; }
.lp-steps article:nth-child(3) { border-top: 3px solid #8B5CF6; }
.svc-card .lp-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.svc-0 .lp-ico { background: #2563EB; }
.svc-1 .lp-ico { background: #7C3AED; }
.svc-2 .lp-ico { background: #06B6D4; }
.svc-3 .lp-ico { background: #F59E0B; }
.svc-4 .lp-ico { background: #10B981; }
.svc-5 .lp-ico { background: #EF4444; }
.contact-stage { background: #0B1220; color: #E2E8F0; padding: 3.2rem 0; margin-top: 1rem; }
.contact-stage h2 { color: #fff; }
.contact-stage .lp-lead { color: #94A3B8; }
.contact-stage .lp-kicker { color: #93C5FD; }
.contact-split { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-split { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.contact-form { background: #fff; color: var(--fg); border-radius: 16px; padding: 1.25rem; display: grid; gap: 0.65rem; }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form textarea { min-height: 44px; border: 1px solid var(--border-strong); border-radius: 8px; padding: 0.5rem 0.75rem; font: inherit; color: var(--fg); }
.contact-form textarea { min-height: 110px; }
.ztd-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
body.pay-page {
  background-color: #F8FAFC;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,0.07), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(6,182,212,0.06), transparent 28%),
    linear-gradient(#E2E8F0 1px, transparent 1px),
    linear-gradient(90deg, #E2E8F0 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}
.pay-chip { width: 72px; height: 44px; border-radius: 10px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 1px 2px rgba(11,18,32,0.04); }
.pay-chip img { max-width: 44px; max-height: 22px; width: auto; height: auto; object-fit: contain; }

.hd-page { overflow-x: hidden; }
.hd-nav { position: sticky; top: 0; z-index: 40; background: rgba(248,250,252,.9); backdrop-filter: blur(12px); }
.hd-nav.scrolled { box-shadow: 0 8px 24px rgba(11,18,32,.06); }
.hd-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.hd-nav #mainNav { display: none; align-items: center; gap: 1.1rem; }
.hd-nav #mainNav a:not(.btn) { color: #475569; font-weight: 600; font-size: 0.92rem; }
.hd-nav #mainNav a:not(.btn):hover { color: var(--primary); }
@media (min-width: 960px) { .hd-nav #mainNav { display: flex; } }
@media (max-width: 959px) {
  .hd-nav #mainNav.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; left: 0; right: 0; top: 72px; background: #fff; padding: 1rem 1.25rem 1.4rem; border-bottom: 1px solid var(--border); }
}
.hd-pill { border-radius: 999px; padding-inline: 1.15rem; }
.hd-hero { display: grid; gap: 2.2rem; padding: 3rem 0 2.5rem; align-items: center; }
@media (min-width: 900px) { .hd-hero { grid-template-columns: 1.1fr 0.9fr; } }
.hd-avatar { width: 48px; height: 48px; border-radius: 50%; background: #DBEAFE; color: var(--primary); display: grid; place-items: center; }
.hd-hi { margin: 1rem 0 0.35rem; font-weight: 700; color: #0F172A; }
.hd-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.12; margin: 0; }
.hd-type { color: var(--primary); border-right: 2px solid var(--primary); padding-right: 2px; }
.hd-facts { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.45rem; color: #64748B; font-weight: 600; }
.hd-facts i { width: 1.4rem; color: var(--primary); }
.hd-portrait img, .hd-portrait .lp-hero-ph { width: 100%; height: 380px; object-fit: cover; border-radius: 24px; }
.hd-stats { display: grid; gap: 1rem; padding: 0 0 2rem; }
@media (min-width: 700px) { .hd-stats { grid-template-columns: repeat(3, 1fr); } }
.hd-stats article { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8); border-radius: 18px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.hd-stats strong { display: block; font-size: 1.8rem; font-weight: 800; }
.hd-stats span { color: #64748B; font-size: 0.85rem; }
.hd-section { padding: 3.2rem 0; }
.hd-head { text-align: center; max-width: 36rem; margin: 0 auto 2rem; }
.hd-eyebrow { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700; color: #94A3B8; margin: 0 0 0.45rem; }
.hd-svc { display: grid; gap: 1.1rem; }
@media (min-width: 800px) { .hd-svc { grid-template-columns: 1fr 1fr 1fr; } }
.hd-card { background: rgba(255,255,255,.78); border-radius: 18px; padding: 1.4rem 1.3rem; box-shadow: 0 12px 40px rgba(15,23,42,.06); border: 1px solid rgba(255,255,255,.9); backdrop-filter: blur(16px); transition: transform .25s ease, box-shadow .25s ease; }
.hd-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(15,23,42,.1); }
.hd-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; margin-bottom: 0.9rem; }
.tint-purple .hd-ico { background: #F3E8FF; color: #7C3AED; }
.tint-danger .hd-ico { background: #FEE2E2; color: #DC2626; }
.tint-warning .hd-ico { background: #FEF3C7; color: #D97706; }
.tint-blue .hd-ico { background: #E0F2FE; color: #0284C7; }
.tint-primary .hd-ico { background: #DBEAFE; color: #2563EB; }
.tint-teal .hd-ico { background: #CCFBF1; color: #0D9488; }
.hd-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.hd-card p { color: #64748B; margin: 0; line-height: 1.55; }
.hd-work { display: grid; gap: 1.1rem; }
@media (min-width: 800px) { .hd-work { grid-template-columns: 1fr 1fr; } }
.hd-work article { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #F1F5F9; padding-bottom: 1rem; }
.hd-work img, .hd-work-ph { width: 100%; height: 180px; object-fit: cover; display: block; }
.hd-work-ph { display: grid; place-items: center; background: #0B1220; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; }
.hd-work h3, .hd-work .hd-eyebrow { padding: 0 1rem; }
.hd-work h3 { margin: 0.2rem 0 0; }
.hd-sign { font-weight: 800; margin-top: 1.1rem; }
.hd-contact { display: grid; gap: 2rem; padding: 3rem 0 4rem; }
@media (min-width: 900px) { .hd-contact { grid-template-columns: 0.9fr 1.1fr; } }
.hd-form { background: #fff; border-radius: 20px; padding: 1.4rem; box-shadow: 0 16px 50px rgba(15,23,42,.08); }
.hd-form-2 { display: grid; gap: 0.65rem; }
@media (min-width: 600px) { .hd-form-2 { grid-template-columns: 1fr 1fr; } }
.lp-page.hd { background: radial-gradient(1200px 500px at 80% -10%, rgba(15,118,110,.16), transparent 55%), radial-gradient(900px 420px at 0% 20%, rgba(245,158,11,.10), transparent 50%), #F4F0E8; }
.lp-page.hd .hd-nav { background: rgba(255,252,247,.82); }
.pay-page { background: #F4F0E8; }
.hd-scene { position: relative; min-height: 420px; padding: 2.6rem 2.4rem 2rem; }
.hd-scene .hd-portrait, .glass-frame { position: relative; z-index: 2; }
.glass-frame { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(15,23,42,.18); border: 1px solid rgba(255,255,255,.6); }
.glass-frame img, .hd-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.orb { position: absolute; border-radius: 50%; filter: blur(30px); z-index: 0; animation: floaty 8s ease-in-out infinite; }
.orb-a { width: 180px; height: 180px; background: rgba(15,118,110,.28); top: -20px; right: 10px; }
.orb-b { width: 140px; height: 140px; background: rgba(245,158,11,.22); bottom: 20px; left: -20px; animation-delay: -3s; }
.float-ico { position: absolute; z-index: 3; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: 0 10px 24px rgba(15,23,42,.12); color: var(--primary); animation: floaty 5.5s ease-in-out infinite; }
.float-ico.i1 { top: 0; left: 0; }
.float-ico.i2 { top: 0; right: 0; color: #7C3AED; }
.float-ico.i3 { bottom: 6%; left: 0; color: #DB2777; }
.float-ico.i4 { top: 46%; right: 0; color: #D97706; }
.float-ico.i5 { bottom: 0; right: 8%; color: #0D9488; }
.float-ico.i6 { top: 40%; left: 0; color: #2563EB; }
.ico-blue { background: #DBEAFE; color: #1D4ED8; }
.ico-teal { background: #CCFBF1; color: #0F766E; }
.ico-amber { background: #FEF3C7; color: #B45309; }
.ico-green { background: #D1FAE5; color: #047857; }
.to-top { color: #94A3B8; font-size: 0.85rem; }
.tile-ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 0.45rem; }
.tile-green { border-top: 3px solid #10B981; }
.tile-green .tile-ico { background: #D1FAE5; color: #047857; }
.tile-amber { border-top: 3px solid #F59E0B; }
.tile-amber .tile-ico { background: #FEF3C7; color: #B45309; }
.tile-blue { border-top: 3px solid #2563EB; }
.tile-blue .tile-ico { background: #DBEAFE; color: #1D4ED8; }
.tile-teal { border-top: 3px solid #14B8A6; }
.tile-teal .tile-ico { background: #CCFBF1; color: #0F766E; }
.tile-rose { border-top: 3px solid #F43F5E; }
.tile-rose .tile-ico { background: #FFE4E6; color: #E11D48; }
.bars .bar { background: linear-gradient(180deg, #34D399, #0F766E); border-radius: 8px 8px 4px 4px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hd-nav { background: rgba(255,255,255,.72); border-bottom: 1px solid rgba(226,232,240,.7); }

.review-viewport { overflow: hidden; padding: 0.5rem 0 2rem; }
.review-track { display: flex; gap: 1rem; width: max-content; animation: review-slide 36s linear infinite; }
.review-track:hover { animation-play-state: paused; }
.review-card { width: 320px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px); border: 1px solid #fff; border-radius: 20px; padding: 1.2rem; box-shadow: var(--shadow); }
.review-av { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-card .stars { color: #F59E0B; letter-spacing: 1px; margin: 0.55rem 0 0.35rem; }
.review-card strong { display: block; margin-top: 0.7rem; }
.review-card span { color: var(--muted); font-size: 0.82rem; }
@keyframes review-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.process-grid article .hd-ico { margin-bottom: 0.65rem; }
.process-grid .step-n { display: block; color: var(--primary); font-weight: 700; font-size: 0.8rem; margin-bottom: 0.25rem; }
.pay-success { text-align: center; padding: 0.5rem 0 1rem; }
.pay-success-ico { font-size: 2.4rem; color: #10B981; margin-bottom: 0.4rem; }
.review-box { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.star-pick { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.star-pick label { border: 1px solid var(--border); border-radius: 999px; padding: 0.35rem 0.7rem; cursor: pointer; }
.star-pick input { accent-color: var(--primary); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .hero-char, .reveal-on-scroll { opacity: 1; transform: none; }
  .review-track { flex-wrap: wrap; width: auto; }
}

html { scroll-behavior: smooth; }
.hd-nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 90; }
.hd-page { padding-top: 76px; }
.to-top-fab {
  position: fixed; right: 1.25rem; bottom: 5.7rem; z-index: 49;
  width: 46px; height: 46px; border-radius: 50%;
  background: #0B1220; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(11,18,32,.22); text-decoration: none;
}
.to-top-fab:hover { color: #fff; transform: translateY(-2px); }
.pay-page { background:
  radial-gradient(900px 420px at 90% -10%, rgba(15,118,110,.14), transparent 55%),
  radial-gradient(700px 380px at 0% 100%, rgba(37,99,235,.10), transparent 50%),
  linear-gradient(#F4F0E8, #EEF2FF) !important;
}
.sidebar nav a { display: flex; align-items: center; gap: 0.55rem; }
.sidebar nav a i { width: 1.1rem; text-align: center; opacity: .85; }
.bell { position: relative; color: var(--fg); padding: 0.35rem; font-size: 1.05rem; }
.bell-count { position: absolute; top: -4px; right: -4px; background: #EF4444; color: #fff; border-radius: 99px; font-size: 0.65rem; min-width: 16px; height: 16px; display: grid; place-items: center; padding: 0 4px; }
.copy-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.copy-val { display: block; font-size: 1rem; }
.hd-stats article { display: grid; gap: 0.2rem; }
.hd-stats article i { font-size: 1.1rem; margin-bottom: 0.35rem; }
.stat-blue { background: linear-gradient(180deg,#EEF4FF,#fff) !important; border-color: #BFDBFE !important; }
.stat-blue i, .stat-blue strong { color: #1D4ED8; }
.stat-amber { background: linear-gradient(180deg,#FFF7ED,#fff) !important; border-color: #FDE68A !important; }
.stat-amber i, .stat-amber strong { color: #B45309; }
.stat-teal { background: linear-gradient(180deg,#ECFDF5,#fff) !important; border-color: #A7F3D0 !important; }
.stat-teal i, .stat-teal strong { color: #0F766E; }
.lp-page.hd .lp-footer { background: #E8E0D2; color: #0B1220; }
.lp-page.hd .lp-footer-brand strong, .lp-page.hd .footer-col strong { color: #0B1220; }
.lp-page.hd .lp-footer-brand p, .lp-page.hd .footer-bottom, .lp-page.hd .footer-col a { color: #57534E; }
.lp-page.hd .lp-footer a:hover { color: #0F766E; }
.lp-page.hd .hd-nav { background: #fff !important; border-bottom: 1px solid #E2E8F0; }
.lp-page.hd .lp-footer { background: #fff !important; color: #0B1220; border-top: 1px solid #E2E8F0; }
.lp-social a { background: #fff !important; border: 1px solid #E2E8F0; color: #0B1220 !important; }
.lp-social a .fa-whatsapp { color: #25D366; }
.lp-social a .fa-instagram { color: #E1306C; }
.lp-social a .fa-facebook { color: #1877F2; }
.lp-social a .fa-linkedin { color: #0A66C2; }
.lp-social a .fa-youtube { color: #FF0000; }
.lp-social a .fa-tiktok { color: #111; }
.lp-social a .fa-envelope { color: #0F766E; }
.lp-social a:hover { border-color: currentColor; transform: translateY(-1px); background: #fff !important; }
.nav-socials .lp-social { gap: 0.4rem; }
.nav-socials .lp-social a { width: 34px; height: 34px; font-size: 0.95rem; }
@media (max-width: 959px) { .nav-socials { display: none; } }

/* hover polish */
.btn:hover:not(:disabled) { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 30px rgba(15,118,110,.18); }
.btn:active:not(:disabled) { transform: translateY(0) scale(.98); }
.btn.secondary:hover:not(:disabled) { box-shadow: 0 12px 26px rgba(11,18,32,.08); }
.card, .lp-grid article, article.glass, .wallet, .pay-tab, .pay-card, .stat, .hd-stats article, .copy-row {
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s, border-color .35s;
}
.card:hover, .lp-grid article:hover, article.glass:hover, .stat:hover, .hd-stats article:hover {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 18px 40px rgba(11,18,32,.08);
}
.wallet:hover, .pay-tab:hover { transform: translateY(-3px) scale(1.03); }
.lp-social a { transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .3s !important; }
.lp-social a:hover { transform: translateY(-4px) scale(1.14) !important; box-shadow: 0 8px 18px rgba(11,18,32,.1); }
.float-ico { transition: transform .6s cubic-bezier(.22,1,.36,1); }
.float-ico:hover { transform: scale(1.12) translateY(-4px); }
.hd-nav a:not(.btn), .hd-nav #mainNav a, footer a, .footer-col a {
  transition: color .3s, transform .35s cubic-bezier(.22,1,.36,1);
}
.hd-nav #mainNav a:hover { transform: translateY(-1px); }
.to-top-fab, .wa-bubble a, .wa-fab {
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s;
}
.to-top-fab:hover, .wa-bubble a:hover { transform: translateY(-3px) scale(1.08); }
.sidebar a { transition: background .25s, color .25s, transform .3s; }
.sidebar a:hover { transform: translateX(3px); }
.hd-page img, .pay-page img, .brand-logo, .glass-frame img {
  -webkit-user-drag: none;
  user-select: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.install-body {
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(37,99,235,.18), transparent 55%),
    radial-gradient(700px 420px at 110% 10%, rgba(6,182,212,.16), transparent 50%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}
.install-orb { position: fixed; border-radius: 50%; filter: blur(40px); pointer-events: none; z-index: 0; animation: install-float 14s ease-in-out infinite; }
.install-orb-a { width: 280px; height: 280px; background: rgba(37,99,235,.22); top: 8%; left: -80px; }
.install-orb-b { width: 320px; height: 320px; background: rgba(15,118,110,.16); bottom: 4%; right: -90px; animation-delay: -6s; }
@keyframes install-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(24px,-18px,0); }
}
.install-shell { position: relative; z-index: 1; width: min(640px, calc(100% - 2rem)); margin: 0 auto; padding: 2.4rem 0 3rem; }
.install-hero { text-align: center; margin-bottom: 1.4rem; animation: install-rise .7s cubic-bezier(.22,1,.36,1) both; }
.install-mark {
  width: 56px; height: 56px; margin: 0 auto 0.9rem; border-radius: 16px;
  display: grid; place-items: center; color: #fff; font-size: 1.2rem;
  background: linear-gradient(135deg, #0B1220, #2563EB);
  box-shadow: 0 12px 30px rgba(37,99,235,.28);
}
.install-hero h1 { font-size: 1.85rem; }
.install-hero p { color: var(--muted); margin: 0.4rem 0 0; }
.install-card {
  background: rgba(255,255,255,.88); backdrop-filter: blur(16px);
  border: 1px solid rgba(226,232,240,.9); border-radius: 18px;
  padding: 1.35rem 1.4rem 1.2rem; margin-bottom: 1rem;
  box-shadow: 0 16px 40px rgba(11,18,32,.06);
  animation: install-rise .75s cubic-bezier(.22,1,.36,1) both;
}
.install-card h2 { font-size: 1.02rem; margin: 1.1rem 0 0.75rem; display: flex; align-items: center; gap: 0.45rem; }
.install-card h2:first-child { margin-top: 0; }
.install-card h2 i { color: #2563EB; }
.install-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.install-checks li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; }
.install-checks li.ok i { color: #059669; }
.install-checks li.bad i { color: #DC2626; }
.install-flash { display: flex; align-items: flex-start; gap: 0.5rem; }
.install-go { width: 100%; margin-top: 0.4rem; }
@keyframes install-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.pay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 1rem;
}
.pay-tab {
  flex: 1 1 108px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--fg);
}
.pay-tab input { position: absolute; opacity: 0; pointer-events: none; }
.pay-tab:has(input:checked) {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent);
}
.rail-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin: 0.35rem 0 0.7rem;
}
.rail-card img { height: 28px; width: auto; max-width: 92px; object-fit: contain; }
.rail-card strong { display: block; font-size: 0.92rem; }
.rail-card span { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.pay-wait { display: grid; gap: 0.7rem; justify-items: center; text-align: center; }
.pay-wait .qr { margin-inline: auto; box-shadow: 0 10px 28px rgba(11,18,32,.06); }
.pay-wait .wait-msg { margin: 0; max-width: 28rem; }
.cf-box { width: 100%; }
.cf-box .btn { width: 100%; }
.pay-hold {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(11,18,32,.45);
  display: grid; place-items: center;
  padding: 1.25rem;
}
.pay-hold[hidden] { display: none; }
.pay-hold-card {
  width: min(360px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(11,18,32,.22);
}
.pay-hold-card h3 { margin: 0.6rem 0 0.35rem; font-size: 1.15rem; }
.pay-spin {
  width: 36px; height: 36px; margin: 0 auto;
  border: 3px solid #E2E8F0; border-top-color: var(--primary);
  border-radius: 50%; animation: payspin .8s linear infinite;
}
@keyframes payspin { to { transform: rotate(360deg); } }
.gw-logo { height: 28px; width: auto; max-width: 96px; object-fit: contain; display: block; margin-bottom: 0.55rem; }
.gw-on { color: var(--success); font-weight: 700; }
.gw-off { color: var(--muted); }
body.noscroll { overflow: hidden; }


