/* hon-car-service-core — customer signup page.
 * Ported from /home/marco-maher/Downloads/HonCar Templetes/sign-up.html.
 * Every selector is scoped under .hcs-su-wrap so the theme's chrome and
 * page CSS can't leak into the form, and our styles can't leak out.
 */

/* FULL-BLEED + HIDDEN CHROME — the signup page is a standalone full-screen
   auth layout (like /sign-in/), so the site header, footer and admin bar are
   hidden and Kadence's container/margin constraints are neutralised so the
   split panel fills the viewport. .hcs-su-wrap is emitted only by
   customer-signup.php, so body:has() scopes everything to this page.
   Overrides:
     .content-container.site-container{max-width:var(--global-content-width)}
     .content-area{margin:var(--global-xxl-spacing) 0}  (5rem top/bottom) */
body:has(.hcs-su-wrap){background:#fff}
/* Hide site header + footer (ours and any theme/Elementor variant) + admin bar */
body:has(.hcs-su-wrap) .hcs-app.hcs-header-wrap,
body:has(.hcs-su-wrap) .hcs-header,
body:has(.hcs-su-wrap) header.hcs-header,
body:has(.hcs-su-wrap) .hcs-app.hcs-footer-wrap,
body:has(.hcs-su-wrap) .hcs-footer,
body:has(.hcs-su-wrap) footer.hcs-footer,
body:has(.hcs-su-wrap) .site-header,
body:has(.hcs-su-wrap) .site-footer,
body:has(.hcs-su-wrap) footer.site-footer,
body:has(.hcs-su-wrap) [data-elementor-type="footer"],
body:has(.hcs-su-wrap) [data-elementor-location="footer"],
body:has(.hcs-su-wrap) #wpadminbar{display:none !important}
/* Neutralise Kadence container max-width + content-area margins */
body:has(.hcs-su-wrap) .content-area,
body:has(.hcs-su-wrap) .site-container,
body:has(.hcs-su-wrap) .content-container.site-container,
body:has(.hcs-su-wrap) .entry-content-wrap,
body:has(.hcs-su-wrap) .entry-content,
body:has(.hcs-su-wrap) .entry.single-entry,
body:has(.hcs-su-wrap) .entry{
  margin:0 !important;padding:0 !important;
  max-width:none !important;box-shadow:none !important;background:transparent !important;
}
body:has(.hcs-su-wrap) .entry-header,
body:has(.hcs-su-wrap) .entry-hero,
body:has(.hcs-su-wrap) .page-title,
body:has(.hcs-su-wrap) .entry-title{display:none !important}
html:has(.hcs-su-wrap){margin-top:0 !important}

.hcs-su-wrap{
  --hcs-su-blue-900:#0A2540;
  --hcs-su-blue-800:#0F3A6B;
  --hcs-su-blue-700:#1E5AA8;
  --hcs-su-blue-600:#2563C9;
  --hcs-su-blue-500:#3B7BE0;
  --hcs-su-blue-100:#DCE8F5;
  --hcs-su-blue-50:#EEF4FB;
  --hcs-su-ink:#0A2540;
  --hcs-su-ink-2:#475569;
  --hcs-su-ink-3:#748094;
  --hcs-su-line:#E3E8EF;
  --hcs-su-bg:#FFFFFF;
  --hcs-su-bg-2:#F7F9FC;
  --hcs-su-bg-3:#F0F4F9;
  --hcs-su-green:#0F8B4F;
  --hcs-su-green-50:#E6F4EE;
  --hcs-su-amber:#B45309;
  --hcs-su-red:#C53030;
  --hcs-su-body:'Inter',system-ui,-apple-system,sans-serif;
  --hcs-su-shadow-sm:0 1px 2px rgba(10,37,64,.06);
  --hcs-su-shadow-md:0 4px 14px rgba(10,37,64,.08);
  --hcs-su-shadow-lg:0 18px 40px rgba(10,37,64,.14);

  font-family:var(--hcs-su-body);
  color:var(--hcs-su-ink);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  display:block;
  min-height:600px;
}
.hcs-su-wrap *,
.hcs-su-wrap *::before,
.hcs-su-wrap *::after{box-sizing:border-box;margin:0;padding:0}
.hcs-su-wrap a{color:inherit;text-decoration:none}
.hcs-su-wrap button{font:inherit;border:0;background:none;cursor:pointer;color:inherit}
.hcs-su-wrap input{font:inherit;color:inherit}

/* ============ HONEYPOT ============ */
.hcs-su-wrap .hcs-su-honeypot{
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* ============ TWO-COL LAYOUT ============ */
.hcs-su-wrap .hcs-su-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:100vh;
}
@media (max-width:880px){
  .hcs-su-wrap .hcs-su-split{grid-template-columns:1fr;min-height:auto}
}

/* ============ LEFT BRAND PANEL ============ */
.hcs-su-wrap .hcs-su-brand-panel{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--hcs-su-blue-900) 0%,var(--hcs-su-blue-700) 100%);
  color:#fff;
  padding:48px;
  display:flex;flex-direction:column;justify-content:flex-start;
}
@media (max-width:880px){.hcs-su-wrap .hcs-su-brand-panel{display:none}}
.hcs-su-wrap .hcs-su-brand-panel::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(500px 300px at 20% 80%, rgba(59,123,224,.18), transparent 60%);
  animation:hcsSuBgShift 18s ease-in-out infinite;
}
@keyframes hcsSuBgShift{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(-20px,10px)}
}
.hcs-su-wrap .hcs-su-brand-panel > *{position:relative;z-index:2}

.hcs-su-wrap .hcs-su-brand{
  display:inline-flex;align-items:center;
}
.hcs-su-wrap .hcs-su-brand-logo{
  height:56px;width:auto;display:block;
  filter:drop-shadow(0 4px 14px rgba(0,0,0,.28));
}
@media (max-width:980px){.hcs-su-wrap .hcs-su-brand-logo{height:44px}}

/* Anchor the pitch a consistent distance below the top so it lands at the
   same height as sign-in's .hcs-brand-middle (upper third). A viewport-
   relative margin keeps the screen position stable even though the signup
   form column is taller than sign-in's — centring would otherwise drag the
   pitch down with the taller panel. */
.hcs-su-wrap .hcs-su-pitch{max-width:440px;margin-top:16vh}
.hcs-su-wrap .hcs-su-pitch .hcs-su-tag{
  display:inline-block;font-size:11.5px;font-weight:700;
  background:rgba(255,255,255,.12);color:#fff;
  padding:4px 12px;border-radius:999px;
  text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px;
  border:1px solid rgba(255,255,255,.2);
}
/* Force-white the brand-panel headings + body — Kadence sets a global
 * `h2 { color: var(--global-palette3) }` that wins on raw .hcs-su-pitch
 * h2 selectors without this extra specificity. */
.hcs-su-wrap .hcs-su-brand-panel .hcs-su-pitch h2,
.hcs-su-wrap .hcs-su-brand-panel h2{
  font-size:clamp(28px,3.5vw,38px);font-weight:800;
  letter-spacing:-.025em;line-height:1.15;margin-bottom:16px;
  color:#fff;
}
.hcs-su-wrap .hcs-su-brand-panel .hcs-su-pitch p,
.hcs-su-wrap .hcs-su-brand-panel p{
  font-size:15.5px;color:rgba(255,255,255,.82);line-height:1.6;
  margin-bottom:24px;
}

.hcs-su-wrap .hcs-su-bullets{display:flex;flex-direction:column;gap:14px}
.hcs-su-wrap .hcs-su-bullet{display:flex;gap:12px;align-items:flex-start}
.hcs-su-wrap .hcs-su-bullet-ic{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  background:rgba(255,255,255,.12);color:#67E8B8;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.18);
}
.hcs-su-wrap .hcs-su-bullet-text{flex:1;font-size:14px;color:rgba(255,255,255,.92);line-height:1.5}
.hcs-su-wrap .hcs-su-bullet-text strong{display:block;color:#fff;font-weight:700;margin-bottom:2px;font-size:14.5px}

/* ============ RIGHT FORM PANEL ============ */
.hcs-su-wrap .hcs-su-form-panel{
  padding:32px 48px 48px;background:#fff;
  display:flex;flex-direction:column;
  overflow-y:auto;
}
@media (max-width:680px){.hcs-su-wrap .hcs-su-form-panel{padding:24px 22px 36px}}

.hcs-su-wrap .hcs-su-form-top{
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  margin-bottom:32px;
}
.hcs-su-wrap .hcs-su-brand-mobile{
  display:none;align-items:center;
}
@media (max-width:880px){.hcs-su-wrap .hcs-su-brand-mobile{display:inline-flex}}
/* The brand logo.svg is a light/white mark built for the dark brand panel;
   on the white mobile form panel it needs recolouring to read. brightness(0)
   collapses it to a clean dark silhouette. */
.hcs-su-wrap .hcs-su-brand-mobile-logo{
  height:34px;width:auto;display:block;
  filter:brightness(0);
}

.hcs-su-wrap .hcs-su-help-link{
  font-size:13.5px;color:var(--hcs-su-ink-3);font-weight:500;
  display:inline-flex;align-items:center;gap:5px;transition:color .15s;
  margin-left:auto;
}
.hcs-su-wrap .hcs-su-help-link:hover{color:var(--hcs-su-blue-700)}

.hcs-su-wrap .hcs-su-form-wrap{max-width:460px;width:100%;margin:0 auto;flex:1;display:flex;flex-direction:column;justify-content:center}

.hcs-su-wrap .hcs-su-form-head{margin-bottom:24px}
.hcs-su-wrap .hcs-su-form-head h1{
  font-size:clamp(26px,3vw,32px);font-weight:800;
  color:var(--hcs-su-blue-900);letter-spacing:-.02em;line-height:1.15;margin-bottom:8px;
}
.hcs-su-wrap .hcs-su-form-head p{font-size:15px;color:var(--hcs-su-ink-2);line-height:1.55}
.hcs-su-wrap .hcs-su-form-head p a{color:var(--hcs-su-blue-700);font-weight:700;text-decoration:underline}
.hcs-su-wrap .hcs-su-form-head p a:hover{color:var(--hcs-su-blue-900)}

/* ============ SOCIAL ============ */
.hcs-su-wrap .hcs-su-social-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px}
@media (max-width:480px){.hcs-su-wrap .hcs-su-social-row{grid-template-columns:1fr}}
.hcs-su-wrap .hcs-su-social-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:11px;border:1.5px solid var(--hcs-su-line);border-radius:9px;
  background:#fff;font-size:13.5px;font-weight:600;color:var(--hcs-su-ink);
  transition:all .15s;cursor:pointer;
}
.hcs-su-wrap .hcs-su-social-btn:hover{border-color:var(--hcs-su-ink-2);background:var(--hcs-su-bg-2)}

.hcs-su-wrap .hcs-su-divider{
  display:flex;align-items:center;gap:12px;
  font-size:11.5px;color:var(--hcs-su-ink-3);font-weight:600;text-transform:uppercase;letter-spacing:.06em;
  margin:18px 0 20px;
}
.hcs-su-wrap .hcs-su-divider::before,
.hcs-su-wrap .hcs-su-divider::after{content:"";flex:1;height:1px;background:var(--hcs-su-line)}

/* ============ FIELDS ============ */
.hcs-su-wrap .hcs-su-field-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:480px){.hcs-su-wrap .hcs-su-field-grid{grid-template-columns:1fr}}
.hcs-su-wrap .hcs-su-field{margin-bottom:14px}
.hcs-su-wrap .hcs-su-field-label{display:block;font-size:12.5px;font-weight:600;color:var(--hcs-su-ink);margin-bottom:6px}
.hcs-su-wrap .hcs-su-field-label .hcs-su-req,
.hcs-su-wrap .hcs-su-req{color:var(--hcs-su-blue-700);font-weight:700}
.hcs-su-wrap .hcs-su-field-label .hcs-su-optional{color:var(--hcs-su-ink-3,#94a3b8);font-weight:500;font-size:.86em}
.hcs-su-wrap .hcs-su-muted{color:var(--hcs-su-ink-3)}

.hcs-su-wrap .hcs-su-input-wrap{position:relative}
.hcs-su-wrap .hcs-su-input-wrap .hcs-su-leading{
  position:absolute;left:13px;top:50%;transform:translateY(-50%);
  color:var(--hcs-su-ink-3);pointer-events:none;display:flex;
}
.hcs-su-wrap .hcs-su-text-input{
  width:100%;padding:11px 13px;
  border:1.5px solid var(--hcs-su-line);border-radius:9px;
  font-size:14.5px;font-weight:500;background:#fff;
  transition:all .15s;font-family:var(--hcs-su-body);color:var(--hcs-su-ink);
}
.hcs-su-wrap .hcs-su-input-wrap .hcs-su-text-input{padding-left:40px}
.hcs-su-wrap .hcs-su-text-input:focus{outline:0;border-color:var(--hcs-su-blue-700);box-shadow:0 0 0 3px rgba(30,90,168,.15)}
.hcs-su-wrap .hcs-su-text-input::placeholder{color:var(--hcs-su-ink-3);font-weight:500}

.hcs-su-wrap .hcs-su-password-wrap{position:relative}
.hcs-su-wrap .hcs-su-password-wrap .hcs-su-text-input{padding-right:42px}
.hcs-su-wrap .hcs-su-password-toggle{
  position:absolute;right:8px;top:50%;transform:translateY(-50%);
  width:32px;height:32px;border-radius:6px;
  display:grid;place-items:center;color:var(--hcs-su-ink-3);transition:all .15s;cursor:pointer;
}
.hcs-su-wrap .hcs-su-password-toggle:hover{background:var(--hcs-su-bg-2);color:var(--hcs-su-ink-2)}

.hcs-su-wrap .hcs-su-field.is-error .hcs-su-text-input{border-color:var(--hcs-su-red);box-shadow:0 0 0 3px rgba(197,48,48,.1)}
.hcs-su-wrap .hcs-su-field-error{display:none;font-size:12px;color:var(--hcs-su-red);font-weight:600;margin-top:5px}
.hcs-su-wrap .hcs-su-field.is-error .hcs-su-field-error{display:block}

/* ============ PASSWORD STRENGTH ============ */
.hcs-su-wrap .hcs-su-pw-strength{
  margin-top:8px;display:flex;flex-direction:column;gap:6px;
}
.hcs-su-wrap .hcs-su-pw-strength[hidden]{display:none}
.hcs-su-wrap .hcs-su-pw-bars{display:flex;gap:4px;height:4px}
.hcs-su-wrap .hcs-su-pw-bar{flex:1;background:var(--hcs-su-line);border-radius:2px;transition:background .25s}
.hcs-su-wrap .hcs-su-pw-strength.is-weak .hcs-su-pw-bar:nth-child(1){background:var(--hcs-su-red)}
.hcs-su-wrap .hcs-su-pw-strength.is-medium .hcs-su-pw-bar:nth-child(-n+2){background:var(--hcs-su-amber)}
.hcs-su-wrap .hcs-su-pw-strength.is-strong .hcs-su-pw-bar:nth-child(-n+3){background:var(--hcs-su-green)}
.hcs-su-wrap .hcs-su-pw-strength.is-excellent .hcs-su-pw-bar{background:var(--hcs-su-green)}
.hcs-su-wrap .hcs-su-pw-meta{font-size:11.5px;color:var(--hcs-su-ink-3);display:flex;justify-content:space-between;align-items:center}
.hcs-su-wrap .hcs-su-pw-label{font-weight:600}
.hcs-su-wrap .hcs-su-pw-strength.is-weak .hcs-su-pw-label{color:var(--hcs-su-red)}
.hcs-su-wrap .hcs-su-pw-strength.is-medium .hcs-su-pw-label{color:var(--hcs-su-amber)}
.hcs-su-wrap .hcs-su-pw-strength.is-strong .hcs-su-pw-label,
.hcs-su-wrap .hcs-su-pw-strength.is-excellent .hcs-su-pw-label{color:var(--hcs-su-green)}

/* ============ CONSENTS ============ */
.hcs-su-wrap .hcs-su-consent-row{
  display:flex;align-items:flex-start;gap:9px;cursor:pointer;
  font-size:12.5px;color:var(--hcs-su-ink-2);line-height:1.5;padding:4px 0;
  /* Stop drag-to-select on the consent label text. */
  user-select:none;-webkit-user-select:none;
}
/* Don't set pointer-events:none on the children: those clicks would land
   on the SVG path / checkbox span and be swallowed entirely (CSS doesn't
   bubble pointer-events:none clicks back to the parent label), which
   meant the toggle wouldn't fire when the user clicked directly on the
   checkbox box. The JS handler keys off e.target.tagName === 'A' to
   pass-through clicks on the embedded links. */
.hcs-su-wrap .hcs-su-consent-row .hcs-su-cb{
  width:17px;height:17px;border-radius:5px;border:2px solid var(--hcs-su-line);
  display:grid;place-items:center;flex-shrink:0;margin-top:1px;transition:all .15s;
}
.hcs-su-wrap .hcs-su-consent-row.is-checked .hcs-su-cb{background:var(--hcs-su-blue-700);border-color:var(--hcs-su-blue-700)}
.hcs-su-wrap .hcs-su-consent-row .hcs-su-cb svg{opacity:0;color:#fff}
.hcs-su-wrap .hcs-su-consent-row.is-checked .hcs-su-cb svg{opacity:1}
.hcs-su-wrap .hcs-su-consent-row a{color:var(--hcs-su-blue-700);font-weight:600;text-decoration:underline}
.hcs-su-wrap .hcs-su-consent-row a:hover{color:var(--hcs-su-blue-900)}

.hcs-su-wrap .hcs-su-consents{margin-top:6px;display:flex;flex-direction:column;gap:2px;margin-bottom:18px}

/* ============ SUBMIT ============ */
.hcs-su-wrap .hcs-su-submit-btn{
  width:100%;background:var(--hcs-su-blue-700);color:#fff;
  padding:13px;border-radius:10px;font-weight:700;font-size:15px;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  transition:all .15s;cursor:pointer;
}
.hcs-su-wrap .hcs-su-submit-btn:hover{background:var(--hcs-su-blue-800);transform:translateY(-1px)}
.hcs-su-wrap .hcs-su-submit-btn:disabled{opacity:.6;cursor:not-allowed;transform:none}
.hcs-su-wrap .hcs-su-spinner{display:none;width:14px;height:14px;border:2px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;animation:hcsSuSpin .8s linear infinite}
.hcs-su-wrap .hcs-su-submit-btn.is-loading .hcs-su-spinner{display:inline-block}
.hcs-su-wrap .hcs-su-submit-btn.is-loading .hcs-su-submit-label{display:none}
@keyframes hcsSuSpin{to{transform:rotate(360deg)}}

/* ============ FORM FOOT ============ */
.hcs-su-wrap .hcs-su-form-foot{
  margin-top:18px;text-align:center;font-size:13.5px;color:var(--hcs-su-ink-2);
}
.hcs-su-wrap .hcs-su-form-foot a{color:var(--hcs-su-blue-700);font-weight:700;text-decoration:underline}
.hcs-su-wrap .hcs-su-form-foot a:hover{color:var(--hcs-su-blue-900)}

.hcs-su-wrap .hcs-su-trust-row{
  margin-top:24px;padding-top:18px;border-top:1px dashed var(--hcs-su-line);
  display:flex;justify-content:center;gap:18px;flex-wrap:wrap;
  font-size:11.5px;color:var(--hcs-su-ink-3);
}
.hcs-su-wrap .hcs-su-trust-item{display:inline-flex;align-items:center;gap:5px}
.hcs-su-wrap .hcs-su-trust-item svg{color:var(--hcs-su-green)}

/* ============ SUCCESS STATE ============ */
.hcs-su-wrap .hcs-su-success{display:none;text-align:center;animation:hcsSuCardFade .35s ease;max-width:460px;width:100%;margin:0 auto}
.hcs-su-wrap .hcs-su-success.is-show{display:flex;flex-direction:column;justify-content:center;flex:1}
@keyframes hcsSuCardFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.hcs-su-wrap .hcs-su-ok-ic{
  width:68px;height:68px;border-radius:50%;margin:0 auto 20px;
  background:var(--hcs-su-green-50);color:var(--hcs-su-green);
  display:grid;place-items:center;
  box-shadow:0 10px 28px -8px rgba(15,139,79,.3);
  position:relative;
}
.hcs-su-wrap .hcs-su-ok-ic::after{
  content:"";position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(15,139,79,.3);
  animation:hcsSuOkRing 1.8s ease-out infinite;
}
@keyframes hcsSuOkRing{0%{transform:scale(.85);opacity:.8}100%{transform:scale(1.4);opacity:0}}
.hcs-su-wrap .hcs-su-success h2{font-size:24px;font-weight:800;color:var(--hcs-su-blue-900);letter-spacing:-.02em;margin-bottom:8px}
.hcs-su-wrap .hcs-su-success p{font-size:15px;color:var(--hcs-su-ink-2);line-height:1.6;margin-bottom:18px}
.hcs-su-wrap .hcs-su-success p strong{color:var(--hcs-su-blue-900);font-weight:700}
.hcs-su-wrap .hcs-su-email-pill{
  display:inline-block;font-family:var(--hcs-su-body);font-weight:700;
  background:var(--hcs-su-bg-2);color:var(--hcs-su-blue-900);
  padding:4px 12px;border-radius:6px;font-size:14px;letter-spacing:.02em;
}
.hcs-su-wrap .hcs-su-check-inbox{
  margin-top:14px;padding:14px 16px;
  background:var(--hcs-su-blue-50);border:1px solid var(--hcs-su-blue-100);border-radius:10px;
  font-size:13px;color:var(--hcs-su-blue-700);line-height:1.5;
  display:flex;gap:9px;align-items:flex-start;text-align:left;
}
.hcs-su-wrap .hcs-su-check-inbox svg{flex-shrink:0;color:var(--hcs-su-blue-700);margin-top:2px}
.hcs-su-wrap .hcs-su-check-inbox strong{color:var(--hcs-su-blue-900)}

.hcs-su-wrap .hcs-su-actions-row{
  margin-top:24px;display:flex;gap:8px;justify-content:center;flex-wrap:wrap;
}
.hcs-su-wrap .hcs-su-btn-outline{
  display:inline-flex;align-items:center;gap:7px;padding:11px 18px;
  background:#fff;color:var(--hcs-su-blue-700);border:1.5px solid var(--hcs-su-blue-700);
  border-radius:9px;font-weight:600;font-size:13.5px;transition:all .15s;
  text-decoration:none;
}
.hcs-su-wrap .hcs-su-btn-outline:hover{background:var(--hcs-su-blue-700);color:#fff}
.hcs-su-wrap .hcs-su-btn-ghost{
  display:inline-flex;align-items:center;gap:7px;padding:11px 18px;
  background:#fff;color:var(--hcs-su-ink-2);border:1.5px solid var(--hcs-su-line);
  border-radius:9px;font-weight:600;font-size:13.5px;transition:all .15s;
  text-decoration:none;
}
.hcs-su-wrap .hcs-su-btn-ghost:hover{border-color:var(--hcs-su-ink-2);color:var(--hcs-su-ink)}

.hcs-su-wrap .hcs-su-resend-row{margin-top:16px;font-size:12.5px;color:var(--hcs-su-ink-3);text-align:center}
.hcs-su-wrap .hcs-su-resend-row button{
  color:var(--hcs-su-blue-700);font-weight:600;text-decoration:underline;background:none;cursor:pointer;
}
.hcs-su-wrap .hcs-su-resend-row button:hover{color:var(--hcs-su-blue-900)}

/* ============ TOAST ============ */
.hcs-su-wrap .hcs-su-toast{
  position:fixed;bottom:24px;left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--hcs-su-blue-900);color:#fff;
  padding:12px 20px;border-radius:10px;
  font-size:14px;font-weight:600;box-shadow:var(--hcs-su-shadow-lg);
  z-index:300;display:flex;align-items:center;gap:10px;
  opacity:0;transition:all .25s ease;pointer-events:none;
}
.hcs-su-wrap .hcs-su-toast.is-show{opacity:1;transform:translateX(-50%) translateY(0)}
.hcs-su-wrap .hcs-su-toast.is-error{background:var(--hcs-su-red)}
.hcs-su-wrap .hcs-su-toast svg{color:#67E8B8}
.hcs-su-wrap .hcs-su-toast.is-error svg{color:#fff}

/* ========== PHONE VERIFICATION (OTP) ==========
   Ported from sign-up.html .verify-wrap. Lives inside the same card as
   the form — when active the form is hidden via [hidden] on its
   wrapper and this pane gets `is-show`. Background uses --hcs-su-bg-2
   for the OTP boxes so empty cells read "tap me" rather than "this
   field is filled with whitespace". */
.hcs-su-wrap .hcs-su-verify-wrap{
  display:none;animation:hcsSuCardFade .35s ease;
  max-width:440px;width:100%;margin:0 auto;flex:1;
  flex-direction:column;justify-content:center;
}
.hcs-su-wrap .hcs-su-verify-wrap.is-show{display:flex}

.hcs-su-wrap .hcs-su-verify-back{
  display:inline-flex;align-items:center;gap:5px;
  font-size:13px;color:var(--hcs-su-ink-3);font-weight:600;
  background:none;border:0;cursor:pointer;
  padding:6px 0;margin-bottom:18px;transition:color .15s;
  align-self:flex-start;
}
.hcs-su-wrap .hcs-su-verify-back:hover{color:var(--hcs-su-blue-700)}

.hcs-su-wrap .hcs-su-verify-ic{
  width:64px;height:64px;border-radius:50%;
  background:var(--hcs-su-blue-50);color:var(--hcs-su-blue-700);
  display:grid;place-items:center;margin-bottom:18px;
  position:relative;
}
.hcs-su-wrap .hcs-su-verify-ic::after{
  content:"";position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(30,90,168,.18);
  animation:hcsSuVerifyRing 1.8s ease-out infinite;
}
@keyframes hcsSuVerifyRing{
  0%  {transform:scale(.85);opacity:.8}
  100%{transform:scale(1.4); opacity:0}
}

.hcs-su-wrap .hcs-su-verify-wrap h1{
  font-size:clamp(24px,2.8vw,28px);font-weight:800;
  color:var(--hcs-su-blue-900);letter-spacing:-.02em;line-height:1.15;
  margin-bottom:8px;
}
.hcs-su-wrap .hcs-su-verify-sub{
  font-size:14.5px;color:var(--hcs-su-ink-2);line-height:1.55;
  margin-bottom:20px;
}
.hcs-su-wrap .hcs-su-verify-phone-pill{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--hcs-su-body);font-weight:700;font-size:14.5px;
  background:var(--hcs-su-bg-2);color:var(--hcs-su-blue-900);
  padding:4px 12px;border-radius:7px;letter-spacing:.04em;
  border:1px solid var(--hcs-su-line);margin:0 4px;
  font-variant-numeric:tabular-nums;
}
.hcs-su-wrap .hcs-su-change-link{
  background:none;border:0;cursor:pointer;
  font-size:12px;color:var(--hcs-su-blue-700);font-weight:600;
  text-decoration:underline;padding:0 0 0 4px;
}
.hcs-su-wrap .hcs-su-change-link:hover{color:var(--hcs-su-blue-900)}

.hcs-su-wrap .hcs-su-otp-row{
  display:flex;gap:8px;margin-bottom:14px;justify-content:flex-start;
}
@media (max-width:420px){.hcs-su-wrap .hcs-su-otp-row{gap:5px}}
.hcs-su-wrap .hcs-su-otp-input{
  width:50px;height:60px;
  border:1.5px solid var(--hcs-su-line);border-radius:10px;
  font-size:24px;font-weight:700;text-align:center;
  background:#fff;color:var(--hcs-su-blue-900);font-family:var(--hcs-su-body);
  transition:all .15s;
  font-variant-numeric:tabular-nums;
}
@media (max-width:420px){.hcs-su-wrap .hcs-su-otp-input{width:42px;height:54px;font-size:21px}}
.hcs-su-wrap .hcs-su-otp-input:focus{
  outline:0;border-color:var(--hcs-su-blue-700);
  box-shadow:0 0 0 3px rgba(30,90,168,.18);
  transform:scale(1.02);
}
.hcs-su-wrap .hcs-su-otp-input.is-filled{
  border-color:var(--hcs-su-blue-700);background:var(--hcs-su-blue-50);
}
.hcs-su-wrap .hcs-su-otp-input.is-error{
  border-color:var(--hcs-su-red);background:#FEE;
  animation:hcsSuOtpShake .35s ease;
}
@keyframes hcsSuOtpShake{
  0%,100%{transform:translateX(0)}
  25%    {transform:translateX(-4px)}
  75%    {transform:translateX(4px)}
}

.hcs-su-wrap .hcs-su-otp-error{
  display:none;font-size:12.5px;color:var(--hcs-su-red);font-weight:600;
  margin-top:-4px;margin-bottom:14px;
  gap:5px;align-items:center;
}
.hcs-su-wrap .hcs-su-otp-error.is-show{display:flex}
.hcs-su-wrap .hcs-su-otp-error svg{flex-shrink:0;color:var(--hcs-su-red)}

.hcs-su-wrap .hcs-su-otp-locked{
  display:none;padding:12px 14px;
  background:#FEE;border:1px solid #FCC;border-radius:8px;
  font-size:13px;color:var(--hcs-su-red);line-height:1.5;
  margin-bottom:14px;gap:9px;align-items:flex-start;
}
.hcs-su-wrap .hcs-su-otp-locked.is-show{display:flex}
.hcs-su-wrap .hcs-su-otp-locked svg{flex-shrink:0;color:var(--hcs-su-red);margin-top:2px}
.hcs-su-wrap .hcs-su-otp-locked strong{display:block;font-weight:700;margin-bottom:1px}

.hcs-su-wrap .hcs-su-verify-actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-top:6px}
.hcs-su-wrap .hcs-su-verify-submit{
  background:var(--hcs-su-blue-700);color:#fff;
  padding:12px 22px;border-radius:9px;font-weight:700;font-size:14.5px;
  display:inline-flex;align-items:center;gap:7px;flex:1;justify-content:center;
  border:0;cursor:pointer;transition:all .15s;
}
.hcs-su-wrap .hcs-su-verify-submit:hover{background:var(--hcs-su-blue-800)}
.hcs-su-wrap .hcs-su-verify-submit:disabled{opacity:.5;cursor:not-allowed}
.hcs-su-wrap .hcs-su-verify-submit .spinner{
  display:none;width:14px;height:14px;
  border:2px solid rgba(255,255,255,.4);border-top-color:#fff;
  border-radius:50%;animation:hcsSuSpin .8s linear infinite;
}
.hcs-su-wrap .hcs-su-verify-submit.is-loading .spinner{display:inline-block}
.hcs-su-wrap .hcs-su-verify-submit.is-loading .label{display:none}

.hcs-su-wrap .hcs-su-resend-block{
  margin-top:18px;padding:14px 16px;
  background:var(--hcs-su-bg-2);border:1px solid var(--hcs-su-line);border-radius:10px;
  font-size:13px;color:var(--hcs-su-ink-2);line-height:1.5;text-align:center;
}
.hcs-su-wrap .hcs-su-resend-block strong{color:var(--hcs-su-blue-900);font-weight:700}
.hcs-su-wrap .hcs-su-resend-btn{
  margin-left:5px;color:var(--hcs-su-blue-700);font-weight:700;
  background:none;border:0;cursor:pointer;text-decoration:underline;
  font-family:inherit;font-size:inherit;
}
.hcs-su-wrap .hcs-su-resend-btn:hover{color:var(--hcs-su-blue-900)}
.hcs-su-wrap .hcs-su-resend-btn:disabled{
  color:var(--hcs-su-ink-3);cursor:not-allowed;
  text-decoration:none;font-weight:500;
}
.hcs-su-wrap .hcs-su-resend-cooldown{
  display:none;font-variant-numeric:tabular-nums;font-weight:600;
  color:var(--hcs-su-ink-3);margin-left:5px;
}
.hcs-su-wrap .hcs-su-resend-cooldown.is-show{display:inline}

.hcs-su-wrap .hcs-su-verify-trust{
  margin-top:14px;font-size:11.5px;color:var(--hcs-su-ink-3);text-align:center;
  display:flex;justify-content:center;gap:6px;align-items:center;
}
.hcs-su-wrap .hcs-su-verify-trust svg{color:var(--hcs-su-green)}

@media (prefers-reduced-motion:reduce){
  .hcs-su-wrap *,
  .hcs-su-wrap *::before,
  .hcs-su-wrap *::after{animation:none!important;transition:none!important}
}

/* Email 6-digit verification widget (hard gate) */
.hcs-su-emailverify{margin-top:8px}
.hcs-su-ev-send{
  appearance:none;border:1.5px solid var(--hcs-line,#E3E8EF);background:#fff;
  font:inherit;font-size:13px;font-weight:600;color:var(--hcs-blue-700,#1E5AA8);
  padding:8px 12px;border-radius:8px;cursor:pointer;transition:all .15s;
}
.hcs-su-ev-send:hover{background:var(--hcs-bg-2,#F7F9FC);border-color:var(--hcs-blue-500,#3B7BE0)}
.hcs-su-ev-send:disabled{opacity:.6;cursor:not-allowed}
.hcs-su-ev-coderow{display:flex;gap:8px;align-items:center;margin-top:8px}
.hcs-su-ev-coderow .hcs-su-text-input{max-width:140px;letter-spacing:.25em;text-align:center;font-weight:700}
.hcs-su-ev-verify{
  appearance:none;border:0;background:var(--hcs-blue-700,#1E5AA8);color:#fff;
  font:inherit;font-size:13px;font-weight:700;padding:9px 16px;border-radius:8px;cursor:pointer;transition:all .15s;
}
.hcs-su-ev-verify:hover{background:var(--hcs-blue-800,#0F3A6B)}
.hcs-su-ev-verify:disabled{opacity:.6;cursor:not-allowed}
.hcs-su-ev-ok{display:inline-block;margin-top:6px;font-size:13px;font-weight:700;color:#1B7F4B}
.hcs-su-ev-msg{margin-top:6px;font-size:12.5px;color:var(--hcs-ink-3,#748094)}
.hcs-su-ev-msg.is-error{color:#C0392B}

/* ===== Email verification MODAL (repurposed verify pane) =====
   Uses the same `.hcs-su-wrap …` prefix as the original pane rules so it
   reliably overrides them (equal specificity, later in source), and RESETS
   the pane's column/card layout (max-width/margin/flex) so the overlay is a
   true full-screen backdrop rather than a centred 440px column. */
.hcs-su-wrap .hcs-su-verify-wrap.is-show{
  position:fixed;inset:0;z-index:3000;
  display:flex;align-items:center;justify-content:center;
  max-width:none;width:auto;margin:0;flex:0 0 auto;
  padding:20px;background:rgba(10,37,64,.55);
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
  overflow:auto;animation:hcsSuOverlay .2s ease;
}
@keyframes hcsSuOverlay{from{opacity:0}to{opacity:1}}
.hcs-su-wrap .hcs-su-verify-card{
  background:#fff;border-radius:16px;width:100%;max-width:440px;position:relative;text-align:center;
  padding:30px 28px 24px;box-shadow:0 24px 50px rgba(10,37,64,.22);
  max-height:calc(100vh - 40px);overflow:auto;animation:hcsSuModalRise .25s ease;
}
@keyframes hcsSuModalRise{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:none}}
/* Close (X) — override the old "Back to details" text-button layout. */
.hcs-su-wrap .hcs-su-verify-wrap.is-show .hcs-su-verify-back{
  position:absolute;top:14px;right:14px;left:auto;width:30px;height:30px;padding:0;margin:0;border-radius:8px;
  background:none;border:0;cursor:pointer;color:var(--hcs-su-ink-3);display:grid;place-items:center;gap:0;align-self:auto;
}
.hcs-su-wrap .hcs-su-verify-wrap.is-show .hcs-su-verify-back:hover{background:var(--hcs-su-bg-2);color:var(--hcs-su-ink)}

/* Social sign-up buttons (re-added 2026-06-04) */
.hcs-su-wrap .hcs-su-social{margin-bottom:18px}
.hcs-su-wrap .hcs-su-social-row{display:flex;gap:8px}
.hcs-su-wrap .hcs-su-soc{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 12px;border:1.5px solid var(--hcs-su-line,#e3e8ef);border-radius:10px;background:#fff;font-weight:600;font-size:14px;color:var(--hcs-su-ink,#0a2540);cursor:pointer;transition:border-color .15s,background .15s}
.hcs-su-wrap .hcs-su-soc:hover{border-color:var(--hcs-su-ink-2,#475569);background:var(--hcs-su-bg-2,#f7f9fc)}
.hcs-su-wrap .hcs-su-soc svg{flex-shrink:0}
.hcs-su-wrap .hcs-su-social-or{display:flex;align-items:center;gap:14px;margin:18px 0 2px;font-size:12px;color:var(--hcs-su-ink-3,#748094);font-weight:500;text-transform:uppercase;letter-spacing:.08em}
.hcs-su-wrap .hcs-su-social-or::before,.hcs-su-wrap .hcs-su-social-or::after{content:"";flex:1;height:1px;background:var(--hcs-su-line,#e3e8ef)}
@media(max-width:420px){.hcs-su-wrap .hcs-su-soc span{display:none}}
