/* ───────────────────────────────────────────────────────────────────────────
   Zentra MY Lead-to-Viewing Leak Finder

   Dark navy throughout. Content sits on dark panels; the ONE white card on the
   whole tool is the capture form, so the eye goes there without a single arrow
   or animation pointing at it. That contrast is the layout's only trick —
   don't spend it twice by adding a second white block.

   House rules inherited from public/style.css:
     · no gradients, no backdrop-filter, no glassmorphism
     · separation from hairline rules and space, not stacked shadows
     · one accent, used sparingly
     · every colour is a token below — never hardcode one further down

   Accent note: the site's Electric Blue (#0021f3) is a CTA fill on white and is
   far too dark to read on this navy. On dark surfaces the accent is the azure
   below. Full-saturation indigo on navy is not an approved pairing.
   ─────────────────────────────────────────────────────────────────────────── */

:root{
  --bg:#0a111c;             /* the page */
  --panel:#101a28;          /* content panel on the dark base */
  --panel-2:#0e1725;        /* option rows — a step back from the panels */
  --line:rgba(174,196,224,.13);
  --line-soft:rgba(174,196,224,.08);

  --text:#f2f6fb;
  --text-sub:#9dadc2;
  --text-muted:#77879c;

  --accent:#1a86ff;         /* azure — buttons, progress fill, active states */
  --accent-hover:#0f74e6;
  --accent-soft:#4ba3ff;    /* eyebrows and icons on dark */
  --accent-wash:rgba(26,134,255,.10);
  --accent-edge:rgba(26,134,255,.42);

  /* the one white card */
  --card:#ffffff;
  --ink:#0d1526;
  --ink-sub:#4b5a6e;
  --ink-muted:#67788d;
  --card-line:rgba(13,21,38,.16);

  --radius:20px;
  --radius-sm:14px;
  --font:'Outfit',system-ui,-apple-system,'Segoe UI',sans-serif;
  /* Outfit has no CJK glyphs. It stays FIRST so the Latin that survives into
     the Chinese page — "Zentra MY", "WhatsApp", every numeral — keeps the
     brand face, and only the Chinese falls through to the system CJK font.
     Reversing the order would restyle the whole page off one 中. */
  --font-cjk:'Outfit','PingFang SC','Hiragino Sans GB','Microsoft YaHei',
             'Noto Sans SC','Source Han Sans SC',system-ui,sans-serif;
  --maxw:940px;      /* wide column, matching the reference design */
}

*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  min-height:100vh;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body.modal-open{overflow:hidden}
b,strong{font-weight:700;color:inherit}

/* ── Brand bar ── */
.topbar{
  display:flex;align-items:center;gap:12px;
  padding:16px 20px;border-bottom:1px solid var(--line-soft);
}
.brand{display:inline-flex;align-items:center;text-decoration:none;flex:none}
.brand-logo{height:26px;width:auto;display:block;border-radius:6px}
.topbar-tag{
  font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-muted);
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
@media(max-width:420px){.topbar-tag{display:none}}

/* ── Language switcher ──
   A segmented control pinned to the right of the brand bar. Three short
   options read faster as a row than as a dropdown, and it has to stay VISIBLE:
   the whole point is that someone who lands on the English page can see there
   is another one without going looking for it.

   Hairline + wash for the active state, no fill — the one solid accent block
   on any screen of this tool is the button you are meant to press next, and
   spending it on a header control would make the header compete with the CTA.
   Empty until i18n.js fills it, so it takes no space with JS off. */
.langswitch{
  margin-left:auto;flex:none;
  display:flex;align-items:center;gap:2px;
  padding:2px;border:1px solid var(--line);border-radius:999px;
}
.langswitch:empty{display:none;border:0;padding:0}

.langbtn{
  appearance:none;background:transparent;border:0;
  font-family:inherit;font-size:12px;font-weight:600;line-height:1;
  color:var(--text-muted);
  padding:7px 11px;border-radius:999px;cursor:pointer;
  transition:color .12s ease,background-color .12s ease;
  /* The labels are 2–3 characters and must not reflow the bar as they change
     weight between states. */
  min-width:38px;text-align:center;
}
.langbtn:hover{color:var(--text)}
.langbtn.on{background:var(--accent-wash);color:var(--accent-soft)}
.langbtn:focus-visible{outline:2px solid var(--accent-edge);outline-offset:2px}
@media(max-width:360px){.langbtn{padding:7px 8px;min-width:32px}}

/* ── Chinese ──
   Only what actually breaks. Chinese has no ascenders/descenders to hang the
   Latin metrics on, so the tight display tracking that makes the English
   headlines feel deliberate just crushes 汉字 together; and CJK needs a little
   more leading at body size to stay readable on a phone. */
html[lang^="zh"] body{font-family:var(--font-cjk);line-height:1.7}
html[lang^="zh"] h1,
html[lang^="zh"] .qtitle,
html[lang^="zh"] .result-h,
html[lang^="zh"] .result-title,
html[lang^="zh"] .leak-name{letter-spacing:0}
/* Keep CJK punctuation off the start of a line. */
html[lang^="zh"] p,
html[lang^="zh"] li,
html[lang^="zh"] dd{line-break:strict}

.noscript{max-width:var(--maxw);margin:0 auto;padding:48px 20px}
.noscript h1{font-size:26px;line-height:1.15;margin-bottom:14px}
.noscript a{color:var(--accent-soft)}

/* ── Layout ── */
.wrap{max-width:var(--maxw);margin:0 auto;padding:30px 20px 60px}
.wrap-hero{padding-top:38px;text-align:center}
.screen[hidden]{display:none}
@media(min-width:700px){.wrap{padding:44px 24px 72px}}

/* ── Type ── */
h1{
  font-size:clamp(30px,6.6vw,42px);line-height:1.08;font-weight:800;
  letter-spacing:-.03em;margin:0 0 16px;
}
.sub{
  color:var(--text-sub);font-size:clamp(15.5px,3.4vw,18px);
  line-height:1.55;max-width:42ch;margin:0 auto 28px;
}
.eyebrow{
  font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent-soft);margin-bottom:14px;
}
.meta{font-size:13px;color:var(--text-muted);margin-top:16px}
.trust{color:var(--text-muted);font-size:13.5px;margin-top:28px;line-height:1.5}
.body{color:var(--text-sub);font-size:16px;line-height:1.65}
.body-sm{font-size:14.5px;margin-bottom:18px}

/* ── Workflow line-art ── */
.pipeline{margin:36px auto 32px;max-width:340px}
.pipeline svg{width:100%;height:auto;display:block}
.pl-run{stroke:var(--text-muted);stroke-width:1.5}
.pl-gap{stroke:var(--text-muted);stroke-width:1.5;stroke-dasharray:3 6;opacity:.5}
.pl-dot{fill:none;stroke:var(--accent-soft);stroke-width:1.5}
.pl-dot-open{stroke:var(--text-muted);opacity:.55}
.pl-t{fill:var(--text-muted);font-size:10px;text-anchor:middle;letter-spacing:.06em}
.pl-t-dim{opacity:.6}

/* ── Dark panel — the default container ── */
.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 22px;
  margin-bottom:14px;
  text-align:left;
}
@media(min-width:700px){.panel{padding:28px 26px}}

/* ── The one white card ── */
.card{
  background:var(--card);color:var(--ink);
  border-radius:var(--radius);
  padding:26px 22px;
  margin-bottom:14px;
  text-align:left;
}
@media(min-width:700px){.card{padding:30px 28px}}
.card-h{font-size:17px;font-weight:700;letter-spacing:-.015em;margin-bottom:18px}
.card-get{margin-top:8px}

.ticks{list-style:none}
.ticks li{
  position:relative;padding-left:28px;margin-bottom:12px;
  color:var(--ink-sub);font-size:15.5px;line-height:1.45;
}
.ticks li:last-child{margin-bottom:0}
.ticks li::before{
  content:"";position:absolute;left:3px;top:.55em;
  width:9px;height:5px;border-left:2px solid var(--accent);border-bottom:2px solid var(--accent);
  transform:rotate(-45deg);
}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font);font-weight:600;font-size:16px;
  background:var(--accent);color:#fff;
  border:0;border-radius:var(--radius-sm);
  padding:15px 26px;cursor:pointer;
  text-decoration:none;   /* .btn is used on <a> as well as <button> */
  transition:background .14s ease,opacity .14s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn:hover{background:var(--accent-hover)}
.btn:focus-visible{outline:2px solid var(--accent-soft);outline-offset:3px}
.btn-lg{padding:18px 30px;font-size:17px;min-height:58px;font-weight:600}
.btn-block{display:flex;width:100%}
.btn .ar{font-size:15px;line-height:1;opacity:.9}

/* Ghost = the secondary action. Never two filled buttons in one row. */
.btn-ghost{
  background:var(--panel);color:var(--text);
  border:1px solid var(--line);font-weight:500;
}
.btn-ghost:hover{background:var(--panel-2);border-color:var(--accent-edge)}

.linkbtn{
  background:none;border:0;padding:0;cursor:pointer;
  font-family:var(--font);font-size:inherit;font-weight:500;color:var(--text-sub);
  text-decoration:underline;text-underline-offset:3px;
}
.linkbtn:hover{color:var(--text)}
.linkbtn-light{display:block;margin:16px auto 0;font-size:14px;color:var(--text-muted)}
.linkbtn-light:hover{color:var(--text)}

/* ══ SCREEN 2 · assessment ═══════════════════════════════════════════════ */
.progwrap{margin-bottom:38px}
.progrow{
  display:flex;align-items:baseline;justify-content:space-between;gap:14px;
  margin-bottom:12px;
}
.prog-t,.prog-p{
  font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-muted);
}
.prog-p{color:var(--text-sub);letter-spacing:.06em}
.prog{height:4px;border-radius:99px;background:rgba(174,196,224,.13);overflow:hidden}
.prog-fill{
  display:block;height:100%;width:0;border-radius:99px;background:var(--accent);
  transition:width .3s ease;
}

.qtitle{
  font-size:clamp(24px,5.4vw,34px);line-height:1.2;font-weight:700;
  letter-spacing:-.025em;
}
.qhelp{color:var(--text-muted);font-size:14.5px;margin-top:10px}

.opts{margin-top:28px;display:flex;flex-direction:column;gap:14px}
.opt{
  display:flex;align-items:center;gap:16px;width:100%;text-align:left;
  font-family:var(--font);font-size:17px;font-weight:500;color:var(--text);
  background:var(--panel-2);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:26px 26px;cursor:pointer;line-height:1.3;
  transition:border-color .12s ease,background .12s ease;
  -webkit-tap-highlight-color:transparent;
}
.opt:hover{border-color:var(--accent-edge);background:var(--panel)}
.opt:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.opt.on{border-color:var(--accent);background:var(--accent-wash)}

/* The radio mark. A real one would inherit the OS look and break the dark
   palette on iOS, so it's drawn — the button carries the ARIA state. */
.dot{
  flex:none;width:20px;height:20px;border-radius:50%;
  border:1.5px solid rgba(174,196,224,.38);
  position:relative;transition:border-color .12s ease;
}
.opt.on .dot{border-color:var(--accent);border-width:2px}
.opt.on .dot::after{
  content:"";position:absolute;inset:3px;border-radius:50%;background:var(--accent);
}

.qnav{display:flex;gap:16px;margin-top:34px}
.btn-back{flex:none;padding-left:22px;padding-right:24px;min-height:58px}
.btn-next{flex:1}
/* Neutral, not a faded blue: a washed-out fill reads as a broken button, and
   turning solid blue the moment you pick something is free feedback. */
.btn-next:disabled{
  background:var(--panel-2);color:var(--text-muted);
  box-shadow:inset 0 0 0 1px var(--line);cursor:not-allowed;
}
.btn-next:disabled:hover{background:var(--panel-2)}
@media(max-width:380px){
  .btn-back{padding-left:16px;padding-right:16px}
  .btn-back span:not(.ar){display:none}   /* arrow only when it would wrap */
}

.qfoot{
  margin-top:20px;font-size:13.5px;color:var(--text-muted);
  display:flex;gap:7px;flex-wrap:wrap;
}

/* ══ SCREEN 3 · partial + gate ═══════════════════════════════════════════ */
.result-h{
  font-size:clamp(30px,7vw,44px);line-height:1.06;font-weight:800;
  letter-spacing:-.032em;margin-bottom:18px;
}
.result-b{color:var(--text-sub);font-size:16.5px;line-height:1.62;margin-bottom:28px}

.panel-locked{padding-bottom:22px}
.lock-h{
  display:flex;align-items:center;gap:11px;
  font-size:18px;font-weight:700;letter-spacing:-.015em;margin-bottom:20px;
}
.lock-i{flex:none;color:var(--accent-soft)}

/* The preview. Blurred, unselectable and not reachable by tab — it is a
   picture of the plan, not content. */
.blurred{
  filter:blur(5px);
  -webkit-user-select:none;user-select:none;pointer-events:none;
  color:var(--text-sub);font-size:15px;line-height:1.6;
  display:flex;flex-direction:column;gap:12px;
}
.blurred p{margin:0}
.lock-note{margin-top:22px;font-size:14px;color:var(--text-muted)}

/* ── Forms (white card) ── */
.field{display:block;margin-bottom:18px}
.lbl{display:block;font-size:15px;font-weight:500;color:var(--ink);margin-bottom:9px}
.lbl .opt-tag{color:var(--ink-muted)}
/* Enumerated rather than a bare `input` selector because .check input (the
   consent checkbox) must keep its own 20px box — a blanket rule pills it.
   Adding a field type here means adding it to this list; tel was added
   2026-08-07 and shipped unstyled for exactly that reason. */
input[type=text],input[type=email],input[type=tel],textarea{
  width:100%;font-family:var(--font);font-size:16px; /* 16px — smaller zooms iOS on focus */
  font-weight:400;color:var(--ink);background:var(--card);
  border:1px solid var(--card-line);border-radius:99px;
  padding:16px 22px;line-height:1.4;
}
textarea{resize:vertical;min-height:96px;border-radius:22px}
input::placeholder,textarea::placeholder{color:var(--ink-muted);opacity:.75}
input:focus,textarea:focus{outline:0;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-wash)}
input[aria-invalid=true],textarea[aria-invalid=true]{border-color:#c62828}

.check{display:flex;align-items:flex-start;gap:12px;margin:20px 0 6px;cursor:pointer}
.check input{flex:none;width:20px;height:20px;margin-top:2px;accent-color:var(--accent);cursor:pointer}
.check span{font-size:14px;line-height:1.45;color:var(--ink-sub)}

.msg{
  font-size:14px;line-height:1.45;margin:14px 0;
  color:#b71c1c;background:rgba(198,40,40,.07);border-radius:12px;padding:11px 14px;
}
.privacy{margin-top:14px;font-size:13px;line-height:1.5;color:var(--ink-muted)}

/* ══ SCREEN 4 · full result ══════════════════════════════════════════════ */
.success{
  display:inline-flex;align-items:center;gap:9px;
  font-size:13.5px;font-weight:500;color:#5fd39b;
  background:rgba(52,199,133,.11);border-radius:999px;padding:8px 16px;
  margin-bottom:20px;
}
.success-modal{margin-bottom:16px;color:#12855a;background:rgba(18,133,90,.09)}

.result-title{font-size:clamp(28px,6.4vw,40px);margin-bottom:8px}
.result-greet{color:var(--text-muted);font-size:15px;margin-bottom:26px}

.sec-h{
  font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:14px;
}
.leak-name{font-size:clamp(22px,5.2vw,28px);font-weight:800;letter-spacing:-.028em;line-height:1.15}
.leak-tag{color:var(--text-sub);font-size:16px;margin-top:10px}

.fixes{list-style:none;counter-reset:fix}
.fixes li{
  counter-increment:fix;position:relative;padding-left:42px;
  padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid var(--line-soft);
}
.fixes li:last-child{border-bottom:0;padding-bottom:0;margin-bottom:0}
.fixes li::before{
  content:counter(fix);position:absolute;left:0;top:1px;
  width:28px;height:28px;border-radius:50%;
  background:var(--accent-wash);color:var(--accent-soft);
  font-size:13px;font-weight:600;
  display:flex;align-items:center;justify-content:center;
}
.fix-t{font-size:16.5px;font-weight:700;line-height:1.32;margin-bottom:7px;letter-spacing:-.01em}
.fix-b{color:var(--text-sub);font-size:15px;line-height:1.62}

.panel-answers{background:var(--panel-2)}

/* ── "Ask for the full workflow on WhatsApp" ──
   Accent-washed so it reads as an offer rather than more result copy. The
   headline stays a step below .cta h2 deliberately: booking a call is still the
   primary action, and two competing 28px headings would flatten that hierarchy
   into "pick one of these two equally loud things". */
.panel-wa{background:var(--accent-wash);border-color:var(--accent-edge)}
.panel-wa h2{
  font-size:clamp(19px,4.2vw,23px);line-height:1.25;font-weight:700;
  letter-spacing:-.022em;margin-bottom:12px;
}
.wa-body{color:var(--text-sub);font-size:15.5px;line-height:1.6;margin-bottom:20px}
/* WhatsApp's own green, not the site accent. Two identical azure buttons
   stacked (this one and "Talk Through My Workflow" below) gave the eye nothing
   to go on. The green is WAYFINDING — it says "this leaves for WhatsApp" — not
   a promotion above the booking CTA, which keeps the size and weight lead.
   Dark ink rather than white: white on #25d366 lands around 2.3:1 and fails
   contrast outright. */
.btn-wa{background:#25d366;color:#062b16}
.btn-wa:hover{background:#1fbb59}
.wa-note{color:var(--text-muted);font-size:13px;line-height:1.5;margin-top:14px}
.wa-code{
  margin-top:10px;font-size:13px;color:var(--text-muted);
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
}
/* Monospace and spaced out because this gets read off a phone screen and typed
   into a search box — the ambiguous glyphs are already excluded in wacode.js,
   and a proportional font would undo half of that. */
.wa-code code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:13px;letter-spacing:.08em;color:var(--text);
  background:rgba(255,255,255,.06);border:1px solid var(--line);
  border-radius:8px;padding:3px 9px;
}
.answers{display:grid;grid-template-columns:1fr;gap:12px}
.answers div{display:flex;justify-content:space-between;gap:16px;align-items:baseline}
.answers dt{font-size:14px;color:var(--text-muted);flex:none;max-width:48%}
.answers dd{font-size:14.5px;font-weight:600;color:var(--text);text-align:right}

/* ── End CTA ── */
.cta{
  margin-top:28px;padding:30px 22px;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  text-align:center;
}
@media(min-width:700px){.cta{padding:36px 30px}}
.cta h2{font-size:clamp(22px,5vw,28px);line-height:1.18;font-weight:800;letter-spacing:-.028em;margin-bottom:14px}
.cta p{color:var(--text-sub);font-size:16px;line-height:1.55;margin-bottom:24px}

/* ── Footer ── */
.foot{
  display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;
  padding:28px 20px 36px;border-top:1px solid var(--line-soft);
  font-size:13px;color:var(--text-muted);
}
.foot a{color:var(--text-muted);text-decoration:none}
.foot a:hover{color:var(--text);text-decoration:underline}

/* ══ MODAL ═══════════════════════════════════════════════════════════════ */
.overlay{
  position:fixed;inset:0;z-index:60;
  background:rgba(4,8,16,.8);
  display:flex;align-items:flex-end;justify-content:center;
  padding:0;overflow-y:auto;
}
@media(min-width:560px){.overlay{align-items:center;padding:24px}}
.overlay[hidden]{display:none}

.modal{
  position:relative;width:100%;max-width:480px;
  background:var(--card);color:var(--ink);
  border-radius:var(--radius) var(--radius) 0 0;
  padding:28px 22px calc(26px + env(safe-area-inset-bottom));
  max-height:94vh;overflow-y:auto;
}
@media(min-width:560px){.modal{border-radius:var(--radius);padding:30px 28px}}

.x{
  position:absolute;top:12px;right:14px;
  background:none;border:0;cursor:pointer;
  font-size:26px;line-height:1;color:var(--ink-muted);
  width:38px;height:38px;
}
.x:hover{color:var(--ink)}

/* ══ BOOKING FLOW ═════════════════════════════════════════════════════════
   /book-workflow-walkthrough and /booking-confirmed. Same tokens, same
   containers — the booking page is the last screen of the same product, not a
   separate landing page, so it must not look like one. */

/* The "may not be right for you" note. Deliberately quiet: it is doing honest
   work, not selling, and styling it as a warning banner would make it read as
   scarcity — which is exactly what it isn't. */
.qualifier{
  color:var(--text-muted);font-size:14.5px;line-height:1.55;
  border-left:2px solid var(--line);padding-left:16px;margin:0 0 26px;
}

.panel-quiet{background:transparent;border-style:dashed}
.panel-quiet .body{margin-bottom:16px}

/* Tick list on a dark panel — the white-card variant's ink is unreadable here */
.ticks-dark li{color:var(--text-sub)}
.ticks-dark li::before{border-color:var(--accent-soft)}

.event-line{
  display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;
  font-size:17px;font-weight:700;letter-spacing:-.015em;margin-bottom:8px;
}
.event-dur{
  flex:none;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--accent-soft);background:var(--accent-wash);
  border-radius:999px;padding:4px 11px;
}

.cal-state{color:var(--text-muted);font-size:14px;margin:20px 0}

/* The Cal.com embed. Given room to breathe and allowed to scroll itself —
   month view needs height, and clipping it hides the times. */
/* The context note sits directly above the first question; without this they
   read as one paragraph. */
#b-context .privacy{margin-bottom:22px}

#cal-embed{margin-top:18px;min-height:0;overflow:auto}
/* Cal renders its own white card, so the panel behind it collapses to a frame. */
#b-cal-panel #cal-embed:not(:empty){border-radius:14px;overflow:hidden}
#cal-embed:not(:empty){min-height:560px}
@media(max-width:520px){#cal-embed:not(:empty){min-height:640px}}

/* ── Chips: the optional pre-book answers ── */
.chips{display:flex;flex-wrap:wrap;gap:9px}
.chip{
  font-family:var(--font);font-size:14.5px;font-weight:500;color:var(--ink-sub);
  background:var(--card);border:1.5px solid var(--card-line);border-radius:999px;
  padding:10px 16px;cursor:pointer;line-height:1.25;
  transition:border-color .12s ease,background .12s ease,color .12s ease;
  -webkit-tap-highlight-color:transparent;
}
.chip:hover{border-color:var(--accent)}
.chip:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.chip.on{border-color:var(--accent);background:var(--accent-wash);color:var(--accent)}

.linkbtn-centre{display:block;margin:16px auto 0;color:var(--ink-muted)}
.linkbtn-centre:hover{color:var(--ink)}

/* ── /booking-confirmed ── */
.confirm{text-align:center;padding-top:44px}
.confirm h1{margin-bottom:16px}
.confirm .result-b{margin-left:auto;margin-right:auto;max-width:52ch}
.confirm .panel{text-align:left;margin-bottom:26px}
.confirm .btn{max-width:340px;margin:0 auto}
