* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
  --green: #006d41;
  --green-soft: #e8f5ee;
  --orange: #f97316;
  --orange-dark: #e5650c;
  --red: #ef4444;
  --wa: #25d366;
  --bg: #ffffff;
  --text: #111;
  --muted: #666;
  --line: #eee;
  --radius: 14px;
}
html, body {
  font-family: "PingFang HK", "PingFang TC", "Noto Sans TC", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #f3faf6 0%, #fff 220px, #fff 100%);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.hidden { display: none !important; }
button { font: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.topbar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  padding: 8px 14px; border-radius: 12px;
}
.logo-icon { font-size: 22px; }
.logo strong { display: block; font-size: 16px; }
.logo small { font-size: 11px; opacity: .85; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  flex: 1; font-size: 12px; color: var(--green); font-weight: 600;
}
.urgency-badge {
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800; text-align: center;
  padding: 10px 14px; border-radius: 50%;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1.25; box-shadow: 0 6px 16px rgba(249,115,22,.35);
}

.page { max-width: 1100px; margin: 0 auto; padding: 0 16px 96px; }

/* Live ticker */
.ticker {
  overflow: hidden; background: #063d28; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: flex; gap: 36px; width: max-content;
  padding: 8px 0; font-size: 12px; font-weight: 600;
  animation: ticker 28s linear infinite;
}
.ticker-track span { white-space: nowrap; opacity: .92; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 28px; align-items: center;
  padding: 28px 0 28px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.hero-chips span {
  font-size: 12px; font-weight: 700; color: var(--green);
  background: #e7f6ee; border: 1px solid #cfeadb;
  padding: 6px 10px; border-radius: 999px;
}
.hero-copy h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900; letter-spacing: -.5px; line-height: 1.1;
}
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-sub { margin-top: 10px; font-size: 20px; font-weight: 700; color: #222; }
.hero-banner {
  display: inline-block; margin: 14px 0;
  background: var(--green); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
}
.hero-feats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; font-size: 13px; color: var(--muted); }
.hero-feats span {
  background: #fff; border: 1px solid #e5efe9; border-radius: 999px;
  padding: 6px 10px; box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px; margin: 0 0 18px; max-width: 360px;
}
.hero-stats div {
  background: #fff; border: 1px solid #e5efe9; border-radius: 12px;
  padding: 10px 8px; text-align: center;
}
.hero-stats strong { display: block; color: var(--green); font-size: 18px; }
.hero-stats small { color: var(--muted); font-size: 11px; }
.btn-orange {
  background: linear-gradient(180deg, #ff8a2a, var(--orange));
  color: #fff; font-weight: 800; font-size: 16px;
  padding: 14px 28px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(249,115,22,.35);
}
.btn-orange:active { transform: scale(.98); background: var(--orange-dark); }

.hero-visual {
  position: relative; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 70% 35%, rgba(0,109,65,.12), transparent 42%),
    radial-gradient(circle at 30% 70%, rgba(249,115,22,.1), transparent 40%);
  border-radius: 24px;
}
.img-phones { width: 58%; position: relative; z-index: 1; filter: drop-shadow(0 12px 24px rgba(0,0,0,.15)); }
.img-gift { width: 42%; position: absolute; right: 0; bottom: 40px; z-index: 2; filter: drop-shadow(0 10px 20px rgba(0,0,0,.12)); }
.float-badge {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  background: var(--red); color: #fff; font-size: 12px; font-weight: 800;
  text-align: center; padding: 10px; border-radius: 12px; line-height: 1.3;
}
.float-toast {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  background: #fff; border-radius: 14px; padding: 10px 12px;
  display: flex; gap: 8px; align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,.12); max-width: 230px;
  border: 1px solid #f0f0f0;
}
.float-toast strong { font-size: 12px; display: block; color: var(--green); }
.float-toast p { font-size: 11px; color: var(--muted); }

/* sections */
.section { padding: 36px 0; }
.section-alt { background: #f7faf8; margin: 0 -16px; padding: 36px 16px; border-radius: 20px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.section-head a, .section a { color: var(--green); font-size: 13px; text-decoration: none; font-weight: 600; }
h2 { font-size: 24px; font-weight: 900; }
h2.center { text-align: center; margin-bottom: 8px; }
h2 small { font-size: 14px; font-weight: 600; color: var(--muted); }
.section-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.section-sub.center { text-align: center; }

.prize-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.prize-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px; text-align: center; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.prize-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,109,65,.1); }
.prize-card.featured { border-color: #fdba74; box-shadow: 0 8px 22px rgba(249,115,22,.12); }
.prize-card .tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
}
.prize-card .tag.hot { background: var(--red); }
.prize-card img { height: 120px; object-fit: contain; margin: 0 auto 10px; }
.prize-card h3 { font-size: 15px; }
.prize-card p { font-size: 12px; color: var(--muted); margin: 4px 0 6px; }
.prize-card .stock { font-size: 11px; color: var(--orange); font-weight: 700; margin-bottom: 10px; }
.prize-card button {
  width: 100%; background: var(--red); color: #fff;
  border-radius: 999px; padding: 10px; font-weight: 800; font-size: 14px;
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.why-grid > div {
  background: #fff; border-radius: 14px; padding: 18px; text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(0,109,65,.04);
}
.why-grid .ico {
  width: 48px; height: 48px; margin: 0 auto;
  border-radius: 14px; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-grid h3 { margin: 8px 0 4px; font-size: 15px; }
.why-grid p { font-size: 12px; color: var(--muted); }

.process-section { background: linear-gradient(180deg, #f7faf8, #fff); border-radius: 24px; margin: 0 -8px; padding: 28px 16px; }
.process-wrap {
  display: grid; grid-template-columns: 1.45fr .9fr; gap: 14px; align-items: stretch;
}
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch; gap: 8px;
}
.step {
  background: #fff; border: 1px solid #dceee4;
  border-radius: 16px; padding: 16px 12px; text-align: center;
  box-shadow: 0 6px 18px rgba(0,109,65,.06);
  position: relative; display: flex; flex-direction: column; justify-content: center;
  min-height: 168px;
}
.step-num {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.step-ico { font-size: 28px; margin: 6px 0 4px; }
.step h3 { margin: 4px 0; font-size: 15px; }
.step p { font-size: 12px; color: var(--muted); }
.step small { display: block; margin-top: 8px; color: var(--green); font-size: 11px; font-weight: 700; }
.step-arrow { color: var(--green); font-weight: 800; font-size: 20px; align-self: center; }
.limited-card {
  background: linear-gradient(160deg, #087a4a, #006d41 55%, #055734);
  color: #fff; border-radius: 18px; padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 10px 28px rgba(0,109,65,.25);
}
.limited-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8px; align-items: center; }
.limited-card h3 { margin-bottom: 8px; font-size: 15px; }
.limited-card ul { list-style: none; font-size: 12px; margin: 0; }
.limited-card li { margin: 5px 0; }
.limited-card img {
  width: 100%; max-height: 88px; object-fit: contain; margin: 0;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.2));
}
.limited-card .btn-orange { width: 100%; margin-top: 12px; padding: 12px 16px; font-size: 14px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reviews article {
  background: #fff; border-radius: 14px; padding: 16px; border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 10px;
}
.reviews p { font-size: 13px; margin-bottom: 10px; }
.reviews strong { font-size: 13px; }
.stars { color: var(--green); letter-spacing: 2px; margin-top: 4px; }

.promise {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; text-align: center;
}
.promise > div {
  background: #fff; border: 1px solid #e5efe9; border-radius: 14px; padding: 14px 8px;
  box-shadow: 0 4px 12px rgba(0,109,65,.04);
}
.promise span { font-size: 26px; }
.promise p { font-size: 12px; margin-top: 6px; color: var(--muted); }

.faq details {
  max-width: 720px; margin: 0 auto 10px; background: #fff;
  border-radius: 12px; padding: 12px 16px; border: 1px solid var(--line);
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin-top: 8px; font-size: 13px; color: var(--muted); }

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  background: var(--green); padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
}
.sticky-bar button {
  width: 100%; max-width: 900px; margin: 0 auto; display: block;
  background: transparent; color: #fff; font-weight: 800; font-size: 15px;
}

/* Modals common */
.modal-mask {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.62);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 12px; overflow-y: auto;
}
@media (min-width: 640px) {
  .modal-mask { align-items: center; }
}
.modal {
  width: min(440px, 100%);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  border-radius: 22px;
  position: relative;
  animation: up .28s ease;
}
@keyframes up { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-x {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 16px;
}

/* Unlock dark green */
.unlock-modal {
  background: #121212; color: #fff; padding: 20px 18px 22px;
}
.unlock-hero {
  display: flex; justify-content: center; align-items: flex-end; gap: 8px;
  margin: 8px 0 14px;
  min-height: 0;
}
.unlock-hero img {
  max-height: 110px; width: auto; object-fit: contain;
}
.unlock-hero img:first-child { width: 42%; }
.unlock-hero img:last-child { width: 32%; margin-bottom: 4px; }
.unlock-modal h2 {
  text-align: center; font-size: 22px; line-height: 1.3;
}
.unlock-modal h2 em { color: #f1c40f; font-style: normal; }
.unlock-tag {
  text-align: center; color: var(--wa); font-weight: 800; margin: 10px 0;
  letter-spacing: 1px;
}
.unlock-desc { text-align: center; font-size: 13px; color: #ccc; margin-bottom: 16px; }
.unlock-desc b { color: var(--wa); }
.unlock-feats {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.unlock-feats li { display: flex; gap: 8px; align-items: flex-start; }
.unlock-feats i {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--wa); display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 16px;
}
.unlock-feats strong { display: block; font-size: 13px; }
.unlock-feats span { display: block; font-size: 11px; color: #999; margin-top: 2px; }
.field-label { display: block; font-size: 13px; margin-bottom: 8px; color: #ddd; }
.phone-row {
  display: flex; align-items: center; gap: 8px;
  background: #1e1e1e; border: 1px solid #333; border-radius: 12px;
  padding: 10px 12px; margin-bottom: 8px;
}
.phone-row .wa { color: var(--wa); }
.phone-row select, .phone-row input {
  background: transparent; border: none; color: #fff; outline: none; font: inherit;
}
.phone-row select { max-width: 86px; }
.phone-row input { flex: 1; min-width: 0; }
.phone-row input::placeholder { color: #666; }
.err { color: #ff6b6b; font-size: 12px; margin-bottom: 8px; }
.btn-wa {
  width: 100%; background: var(--wa); color: #04140a;
  border-radius: 14px; padding: 14px 16px; margin-top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.btn-wa span { font-weight: 900; font-size: 15px; }
.btn-wa small { font-size: 11px; opacity: .8; }
.btn-wa:disabled { opacity: .6; }
.progress { margin-top: 12px; }
.progress-h { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.progress-track { height: 8px; background: #2a2a2a; border-radius: 999px; overflow: hidden; }
#progressBar { height: 100%; width: 0; background: var(--wa); transition: width .2s; }
#progressText { font-size: 12px; color: #999; margin-top: 6px; }
.legal { text-align: center; font-size: 11px; color: #888; margin-top: 12px; }

/* Pairing cream/orange */
.pairing-mask { background: rgba(40,20,0,.55); }
.pairing-modal {
  background: #fdf5ed; color: #1a1a1a; width: min(760px, 100%); padding: 24px 20px;
}
.pairing-modal .modal-x { background: rgba(0,0,0,.08); color: #333; }
.pairing-modal h2 { text-align: center; font-size: 22px; }
.pairing-modal h2 em { color: var(--orange); font-style: normal; }
.pair-hint { text-align: center; font-size: 13px; color: var(--muted); margin: 8px 0 14px; }
.code-row {
  display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.code-box {
  width: 42px; height: 50px; background: #fff; border: 1px solid #e5d5c5;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.code-sep { font-weight: 800; color: #bbb; padding: 0 2px; }
.tutorial-btn { width: 100%; margin-bottom: 14px; }
.pair-body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; align-items: center; }
.ins { list-style: none; }
.ins li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; font-size: 15px; line-height: 1.35; }
.ins span {
  width: 28px; height: 28px; border-radius: 8px; background: #ffe4cc; color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0;
}
.ins strong { display: block; font-size: 15px; line-height: 1.3; }
.ins small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.pair-side { border-radius: 14px; object-fit: contain; max-height: 120px; margin: 0 auto; }
.auth-guide-image { margin: 0 0 14px; border-radius: 18px; overflow: hidden; background: #fff; }
.auth-guide-image.hidden { display: none; }
.auth-guide-image img { display: block; width: 100%; height: auto; max-height: 58vh; object-fit: contain; }
.auth-guide-image:not(.hidden) + .pair-body { display: none; }
.warn {
  background: #ffe8d4; color: #9a4b00; border-radius: 12px;
  padding: 12px 14px; font-size: 14px; line-height: 1.45; margin: 14px 0;
}
.status {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; font-size: 15px; color: var(--muted); margin-bottom: 14px; border-radius: 14px; background: rgba(255,255,255,.66); padding: 10px 12px;
}
.spin {
  width: 18px; height: 18px; border: 2px solid #f0d0b0; border-top-color: var(--orange);
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.copy-btn { width: 100%; }
.pair-foot { text-align: center; font-size: 11px; color: #999; margin-top: 12px; }

.video-box { background: #111; color: #fff; padding: 40px 16px 16px; width: min(520px, 100%); }
.video-box video { width: 100%; border-radius: 12px; margin-top: 10px; }

.toast {
  position: fixed; left: 50%; bottom: 100px; transform: translateX(-50%);
  background: rgba(0,0,0,.82); color: #fff; padding: 10px 16px; border-radius: 999px;
  font-size: 13px; z-index: 200; white-space: nowrap;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 260px; order: -1; }
  .prize-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .promise { grid-template-columns: repeat(3, 1fr); }
  .process-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .step { min-height: 0; }
  .step-arrow { display: none; }
  .limited-top { grid-template-columns: 1.3fr .7fr; }
  .limited-card img { max-height: 72px; }
  .trust-row { display: none; }
  .urgency-badge { width: 72px; height: 72px; font-size: 10px; }
  .pair-body { grid-template-columns: 1fr; }
  .pair-side { display: none; }
  .unlock-feats { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .pairing-modal { width: calc(100vw - 28px); padding: 24px 16px; }
  .code-box { width: 34px; height: 42px; font-size: 18px; }
  .pair-body { grid-template-columns: 1fr; }
  .pair-side { display: none; }
}
@media (max-width: 480px) {
  .prize-grid { grid-template-columns: 1fr 1fr; }
  .code-box { width: 32px; height: 40px; font-size: 16px; }
}

/* Authorization modal v2 */
#unlockModal.modal-mask{padding:14px;background:rgba(0,0,0,.62);align-items:flex-end;justify-content:center}
@media (min-width:640px){#unlockModal.modal-mask{align-items:center;padding:24px}}
#unlockModal .unlock-modal{width:min(560px,100%);max-height:min(92vh,900px);overflow-y:auto;border-radius:28px;padding:34px 26px 26px;box-shadow:0 24px 86px rgba(0,0,0,.5);scrollbar-width:thin}
#unlockModal .modal-x{position:fixed;top:max(24px,6vh);right:max(24px,calc((100vw - 560px)/2 + 18px));z-index:1002;width:46px;height:46px;border-radius:999px;font-size:24px;line-height:1;background:rgba(255,255,255,.86);color:currentColor;box-shadow:0 10px 28px rgba(0,0,0,.18);backdrop-filter:blur(10px)}
#unlockModal .unlock-modal h2{padding:0 54px;font-size:clamp(26px,6vw,34px);line-height:1.16;letter-spacing:0;margin:4px 0 10px;text-align:center}
#unlockModal .unlock-modal h2 em{font-style:normal}
#unlockModal .unlock-modal .tag,#unlockModal .unlock-tag{font-size:15px;line-height:1.45;margin:10px 0 14px;text-align:center}
#unlockModal .unlock-desc,#unlockModal .unlock-modal .desc,#unlockModal .unlock-modal .sub{font-size:15px;line-height:1.55;margin:0 0 20px;text-align:center}
#unlockModal .unlock-hero{margin:0 auto 18px;max-width:360px;min-height:0;gap:14px}
#unlockModal .unlock-hero img{max-height:128px;object-fit:contain}
#unlockModal .unlock-body{gap:18px;margin:20px 0 18px}
#unlockModal .steps4{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:0;padding:0;list-style:none}
#unlockModal .steps4 li{margin:0;min-height:84px;border-radius:18px;padding:14px;align-items:flex-start}
#unlockModal .steps4 span{width:38px;height:38px;border-radius:12px;font-size:16px}
#unlockModal .steps4 strong{font-size:15px;line-height:1.25}
#unlockModal .steps4 small{display:block;margin-top:6px;font-size:12px;line-height:1.45}
#unlockModal .unlock-right img{height:190px;border-radius:22px;margin-bottom:14px}
#unlockModal .why-box{border-radius:20px;padding:16px}
#unlockModal .why-box h3{font-size:17px;margin-bottom:12px}
#unlockModal .why-box strong{font-size:14px;line-height:1.25}
#unlockModal .why-box small{display:block;font-size:12px;line-height:1.35;margin-top:4px}
#unlockModal .unlock-feats{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:22px 0 20px}
#unlockModal .unlock-feats li{min-height:74px;gap:12px;align-items:center;padding:8px 0}
#unlockModal .unlock-feats i{width:44px;height:44px;font-size:18px}
#unlockModal .unlock-feats strong{font-size:15px;line-height:1.25}
#unlockModal .unlock-feats span{font-size:12px;line-height:1.4;margin-top:5px}
#unlockModal .verify-box{margin:20px 0 12px;padding:14px 16px;border-radius:18px;font-size:14px;line-height:1.48;text-align:center}
#unlockModal .field-label{font-size:15px;font-weight:800;margin:20px 0 10px;line-height:1.35}
#unlockModal .phone-row{min-height:64px;border-radius:18px;padding:0 16px;margin-bottom:10px;gap:10px}
#unlockModal .phone-row .wa{font-size:20px;display:inline-flex;align-items:center;justify-content:center;min-width:22px}
#unlockModal .phone-row select[aria-hidden="true"]{display:none!important}
#unlockModal .phone-row select{max-width:92px;font-size:15px}
#unlockModal .phone-row input{min-height:58px;font-size:18px;line-height:1.3;letter-spacing:0}
#unlockModal .phone-row input::placeholder{opacity:.72}
#unlockModal .err{font-size:13px;line-height:1.4;margin:8px 2px 0}
#unlockModal .btn-main.full,#unlockModal .btn-wa,#unlockModal .btn-gold{width:100%;min-height:60px;border-radius:18px;padding:16px 20px;margin-top:14px;font-size:17px;line-height:1.3;white-space:normal;text-align:center}
#unlockModal .btn-main.full span,#unlockModal .btn-wa span,#unlockModal .btn-gold span{display:block;line-height:1.3}
#unlockModal .btn-wa small{font-size:12px;line-height:1.4;margin-top:4px;opacity:.82}
#unlockModal .progress{margin-top:16px;padding:16px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
#unlockModal .progress-h{font-size:14px;line-height:1.35;margin-bottom:10px}
#unlockModal .progress-track{height:10px;border-radius:999px}
#unlockModal #progressText{font-size:13px;line-height:1.45;margin-top:10px;text-align:center}
#unlockModal .foot-trust,#unlockModal .legal{margin-top:16px;font-size:13px;line-height:1.45;text-align:center}
@media (max-width:520px){
  #unlockModal .unlock-modal{border-radius:26px;padding:30px 18px 22px}
  #unlockModal .unlock-modal h2{padding:0 48px;font-size:28px}
  #unlockModal .unlock-body{display:block}
  #unlockModal .steps4,#unlockModal .unlock-feats{gap:12px}
  #unlockModal .unlock-right{display:none}
  #unlockModal .phone-row{min-height:62px;padding:0 14px}
  #unlockModal .phone-row input{font-size:17px}
}

/* Authorization modal v3 readability */
#unlockModal .unlock-modal{padding:38px 28px 28px}
#unlockModal .unlock-modal h2{font-size:clamp(30px,7vw,38px);line-height:1.12;margin-bottom:12px}
#unlockModal .unlock-modal .tag,#unlockModal .unlock-tag{font-size:17px;line-height:1.45;margin-bottom:18px}
#unlockModal .unlock-desc,#unlockModal .unlock-modal .desc,#unlockModal .unlock-modal .sub{font-size:16px;line-height:1.62;margin-bottom:22px}
#unlockModal .steps4 li,#unlockModal .unlock-feats li{background:rgba(255,255,255,.58);border:1px solid rgba(0,0,0,.045);box-shadow:0 8px 24px rgba(0,0,0,.04)}
#unlockModal .steps4 strong,#unlockModal .unlock-feats strong{font-size:17px;line-height:1.25}
#unlockModal .steps4 small,#unlockModal .unlock-feats span{font-size:13px;line-height:1.48}
#unlockModal .verify-box,#unlockModal .field-label{font-size:17px}
#unlockModal .phone-row{min-height:70px;border-radius:20px}
#unlockModal .phone-row input{min-height:64px;font-size:21px}
#unlockModal .btn-main.full,#unlockModal .btn-wa,#unlockModal .btn-gold{min-height:68px;border-radius:20px;font-size:20px}
#unlockModal .foot-trust,#unlockModal .legal{font-size:14px}
@media (max-width:520px){
  #unlockModal .unlock-modal{width:calc(100vw - 28px);border-radius:28px;padding:34px 20px 24px}
  #unlockModal .unlock-modal h2{font-size:32px;padding:0 42px;margin-bottom:14px}
  #unlockModal .unlock-modal .tag,#unlockModal .unlock-tag{font-size:18px;margin-bottom:20px}
  #unlockModal .unlock-desc,#unlockModal .unlock-modal .desc,#unlockModal .unlock-modal .sub{font-size:16px;line-height:1.6}
  #unlockModal .steps4,#unlockModal .unlock-feats{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  #unlockModal .steps4 li,#unlockModal .unlock-feats li{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;min-height:104px;padding:16px;border-radius:22px}
  #unlockModal .steps4 span,#unlockModal .unlock-feats i{width:46px;height:46px;border-radius:16px;font-size:20px;margin-bottom:10px}
  #unlockModal .steps4 strong,#unlockModal .unlock-feats strong{font-size:18px;line-height:1.22}
  #unlockModal .steps4 small,#unlockModal .unlock-feats span{display:none}
  #unlockModal .verify-box{margin-top:20px;padding:16px;border-radius:20px;font-size:17px;line-height:1.5}
  #unlockModal .field-label{font-size:17px;margin-top:22px}
  #unlockModal .phone-row{min-height:72px;border-radius:22px;padding:0 18px}
  #unlockModal .phone-row input{min-height:66px;font-size:21px}
  #unlockModal .btn-main.full,#unlockModal .btn-wa,#unlockModal .btn-gold{min-height:70px;border-radius:22px;font-size:21px;margin-top:16px}
  #unlockModal .foot-trust,#unlockModal .legal{font-size:14px;line-height:1.45}
}

/* Authorization modal v4 form first */
#unlockModal .unlock-modal{display:flex;flex-direction:column}
#unlockModal .unlock-modal > .modal-x{order:0}
#unlockModal .unlock-modal > h2{order:1}
#unlockModal .unlock-modal > .tag,#unlockModal .unlock-modal > .unlock-tag{order:2}
#unlockModal .unlock-modal > .unlock-desc,#unlockModal .unlock-modal > .desc,#unlockModal .unlock-modal > .sub{order:3}
#unlockModal .unlock-modal > .verify-box,#unlockModal .unlock-modal > .field-label{order:4}
#unlockModal .unlock-modal > .phone-row{order:5}
#unlockModal .unlock-modal > .err{order:6}
#unlockModal .unlock-modal > #unlockBtn{order:7}
#unlockModal .unlock-modal > #progressPanel{order:8}
#unlockModal .unlock-modal > .foot-trust,#unlockModal .unlock-modal > .legal{order:9}
#unlockModal .unlock-modal > .unlock-body,#unlockModal .unlock-modal > .unlock-feats,#unlockModal .unlock-modal > .unlock-hero{order:20}
#unlockModal .unlock-modal > .unlock-body,#unlockModal .unlock-modal > .unlock-feats{margin-top:28px}
#unlockModal .unlock-modal > .unlock-hero{margin-top:26px}
#unlockModal .verify-box{margin-top:4px}
#unlockModal .field-label{margin-top:8px}
@media (max-width:520px){
  #unlockModal .unlock-modal{max-height:min(92vh,900px)}
  #unlockModal .unlock-modal > .unlock-body,#unlockModal .unlock-modal > .unlock-feats{margin-top:30px}
  #unlockModal .unlock-modal > .unlock-hero{display:none}
}
