:root { --gold:#C8922A; --gold-light:#FDF3DC; --gold-dark:#a87420; --radius:14px; --border:#E0DDD5; }
#smcalc-wrap { max-width:680px; margin:40px auto; font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; }
#smcalc-inner { background:#fff; border-radius:var(--radius); box-shadow:0 4px 32px rgba(0,0,0,.10); border:1px solid var(--border); padding:40px; }#smcalc-progress { background:#F5F4F0; border-radius:20px; height:5px; margin-bottom:6px; overflow:hidden; }
#smcalc-progress-bar { background:var(--gold); height:100%; border-radius:20px; transition:width .4s ease; width:20%; }
#smcalc-step-label { font-size:12px; color:#999; margin-bottom:28px; text-align:right; }
.smcalc-step h2 { font-size:22px; font-weight:600; color:#2C2C2A; margin:0 0 6px; }
.smcalc-sub { font-size:14px; color:#888; margin:0 0 24px; line-height:1.5; }
.smcalc-field { margin-bottom:18px; }
.smcalc-field label { display:block; font-size:13px; font-weight:600; color:#2C2C2A; margin-bottom:6px; }
.smcalc-field input,.smcalc-field select,.smcalc-field textarea { width:100%; padding:10px 14px; border:1.5px solid var(--border); border-radius:10px; font-size:14px; color:#2C2C2A; background:#F5F4F0; box-sizing:border-box; transition:border-color .15s; font-family:inherit; outline:none; }
.smcalc-field input:focus,.smcalc-field select:focus,.smcalc-field textarea:focus { border-color:var(--gold); background:#fff; }
.smcalc-field select { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-color:#F5F4F0; padding-right:36px; }
.smcalc-field select:focus { background-color:#fff; }
.req { color:var(--gold); }
.smcalc-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.smcalc-pax-grid { display:flex; flex-wrap:wrap; gap:10px; margin-top:4px; }
.smcalc-pax-btn { width:52px; height:52px; border-radius:10px; border:1.5px solid var(--border); background:#F5F4F0; font-size:16px; font-weight:600; color:#2C2C2A; cursor:pointer; transition:all .15s; }
.smcalc-pax-btn:hover { border-color:var(--gold); background:var(--gold-light); }
.smcalc-pax-btn.selected { background:var(--gold); border-color:var(--gold); color:#fff; }
.smcalc-pax-more { width:auto; padding:0 16px; font-size:13px; }
.smcalc-tier-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:8px; }
.smcalc-tier-card { border:2px solid var(--border); border-radius:12px; padding:18px 12px; cursor:pointer; text-align:center; position:relative; transition:all .2s; background:#fff; }
.smcalc-tier-card:hover { border-color:var(--gold); background:var(--gold-light); }
.smcalc-tier-card.selected { border-color:var(--gold); background:var(--gold-light); box-shadow:0 0 0 3px rgba(200,146,42,.15); }
.tier-badge { position:absolute; top:-10px; left:50%; transform:translateX(-50%); background:var(--gold); color:#fff; font-size:10px; font-weight:700; padding:3px 10px; border-radius:20px; white-space:nowrap; }
.tier-stars { font-size:14px; color:var(--gold); margin-bottom:6px; }
.tier-name { font-weight:700; font-size:14px; color:#2C2C2A; margin-bottom:5px; }
.tier-desc { font-size:11px; color:#888; line-height:1.4; }
.smcalc-tier-note { font-size:12px; color:#aaa; text-align:center; margin-top:6px; }
.smcalc-nav { display:flex; justify-content:space-between; align-items:center; margin-top:24px; }
.smcalc-next,.smcalc-back,#smcalc-submit,#smcalc-redirect { padding:12px 28px; border-radius:10px; font-size:14px; font-weight:600; cursor:pointer; border:none; transition:all .15s; font-family:inherit; }
.smcalc-next,#smcalc-submit,#smcalc-redirect { background:var(--gold); color:#fff; }
.smcalc-next:hover,#smcalc-submit:hover,#smcalc-redirect:hover { background:var(--gold-dark); }
.smcalc-next-right { display:block; margin-top:24px; margin-left:auto; }
.smcalc-back { background:#F5F4F0; color:#2C2C2A; border:1.5px solid var(--border); }
.smcalc-back:hover { border-color:var(--gold); color:var(--gold); }
.smcalc-err { color:#c00; font-size:13px; padding:9px 13px; background:#fef0f0; border-radius:8px; border:1px solid #f5c0c0; margin-top:8px; display:none; }
#smcalc-result { text-align:center; padding:8px 0; }
.result-icon { font-size:48px; margin-bottom:10px; }
#smcalc-result h2 { font-size:24px; color:#2C2C2A; margin:0 0 16px; }
.result-meta { font-size:13px; color:#888; margin-bottom:20px; line-height:2; }
.result-meta span { display:inline-block; margin:0 6px; }
.result-meta strong { color:#2C2C2A; }
.result-range-label { font-size:12px; color:#aaa; text-transform:uppercase; letter-spacing:.07em; margin-bottom:8px; }
.result-range { font-size:42px; font-weight:700; color:var(--gold); margin-bottom:8px; line-height:1.1; }
.result-disclaimer { font-size:12px; color:#bbb; margin-bottom:22px; }
.result-cta-box { background:var(--gold-light); border:1px solid #f0d9a0; border-radius:12px; padding:20px 24px; max-width:460px; margin:0 auto 24px; text-align:left; }
.result-cta-box p { font-size:14px; color:#555; line-height:1.7; margin-bottom:16px; }
#smcalc-redirect { width:100%; text-align:center; font-size:15px; }
.result-trust { border-top:1px solid var(--border); padding-top:24px; margin-top:24px; }
.trust-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-bottom:16px; }
.trust-item { background:#F5F4F0; border-radius:10px; padding:12px 14px; text-align:left; }
.trust-num { font-size:18px; font-weight:700; color:var(--gold); margin-bottom:3px; }
.trust-txt { font-size:12px; color:#666; line-height:1.4; }
.trust-tagline { font-size:14px; color:#999; font-style:italic; }
@media(max-width:600px){
  #smcalc-wrap { margin: 0; }
  #smcalc-inner { padding:24px 16px; border-radius:0; border-left:none; border-right:none; box-shadow:none; }
  .smcalc-row { grid-template-columns:1fr; gap:0; }
  .smcalc-tier-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .smcalc-step h2 { font-size:19px; }
  .smcalc-sub { font-size:13px; }
  .result-range { font-size:32px; }
  .result-cta-box { padding:16px; }
  .smcalc-pax-btn { width:46px; height:46px; font-size:15px; }
  .smcalc-next,.smcalc-back,#smcalc-submit,#smcalc-redirect { padding:12px 20px; font-size:14px; }
  .tier-badge { font-size:9px; padding:2px 8px; }
  .smcalc-field input,.smcalc-field select,.smcalc-field textarea { font-size:16px; }
}
@media(max-width:380px){
  .trust-grid { grid-template-columns:1fr; }
  .smcalc-pax-btn { width:42px; height:42px; font-size:14px; }
}

/* Thank you screen */
#smcalc-thankyou { text-align:center; padding:10px 0; }
.ty-check {
  width:64px; height:64px; border-radius:50%;
  background:var(--gold-light); color:var(--gold);
  font-size:28px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
}
#smcalc-thankyou h2 { font-size:22px; font-weight:600; color:#2C2C2A; margin-bottom:10px; }
#ty-name { color:var(--gold); }
.ty-sub { font-size:15px; color:#666; line-height:1.7; margin-bottom:8px; max-width:420px; margin-left:auto; margin-right:auto; }
.ty-sub strong { color:#2C2C2A; }
.ty-divider { border:none; border-top:1px solid var(--border); margin:24px 0; }
.ty-explore { font-size:12px; color:#aaa; text-transform:uppercase; letter-spacing:.05em; margin-bottom:14px; }
.ty-btn-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:24px; }
.ty-btn-primary {
  padding:11px 24px; border-radius:10px;
  background:var(--gold); color:#fff;
  border:none; font-size:14px; font-weight:600;
  cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:7px;
  font-family:inherit; transition:background .15s;
}
.ty-btn-primary:hover { background:var(--gold-dark); color:#fff; }
.ty-btn-secondary {
  padding:11px 24px; border-radius:10px;
  background:#fff; color:#2C2C2A;
  border:1.5px solid var(--border);
  font-size:14px; font-weight:600;
  cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:7px;
  font-family:inherit; transition:all .15s;
}
.ty-btn-secondary:hover { border-color:var(--gold); color:var(--gold); }
.ty-tagline { font-size:13px; color:#bbb; font-style:italic; }
