:root {
  --site-header-h:12px;
  --quote-bg:#0b0b0b;
  --quote-surface:rgba(255,255,255,.03);
  --quote-surface-2:rgba(255,255,255,.06);
  --quote-line:rgba(255,255,255,.10);
  --quote-line-2:rgba(255,255,255,.18);
  --quote-ink:#ffffff;
  --quote-ink-2:#d1d5db;
  --quote-muted:rgba(255,255,255,.56);
  --quote-red:#ff2c2c;
  --quote-red-ink:#ff4a4a;
  --quote-red-soft:rgba(255,44,44,.12);
  --quote-radius:0;
  --quote-pad:24px;
  --quote-maxw:540px;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #0b0b0b;
  max-width:100%;
  overflow-x:hidden;
}

body {
  width:100%;
  overflow-x: hidden;
}

@supports (overflow:clip) {
  html,
  body {
    overflow-x:clip;
  }
}

#page-quote {
  --quote-bg:#0b0b0b;
  --quote-surface:rgba(255,255,255,.03);
  --quote-surface-2:rgba(255,255,255,.06);
  --quote-line:rgba(255,255,255,.10);
  --quote-line-2:rgba(255,255,255,.18);
  --quote-ink:#ffffff;
  --quote-ink-2:#d1d5db;
  --quote-muted:rgba(255,255,255,.56);
  --quote-red:#ff2c2c;
  --quote-red-ink:#ff4a4a;
  --quote-red-soft:rgba(255,44,44,.12);
  --quote-radius:0;
  --quote-pad:24px;
  --quote-maxw:540px;
  background:var(--quote-bg);
  color:var(--quote-ink);
  font-family:"Pretendard","Apple SD Gothic Neo","Malgun Gothic",system-ui,sans-serif;
  line-height:1.55;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  isolation:isolate;
}

#page-quote,
#page-quote * { box-sizing:border-box; letter-spacing:0; max-width:100%; }

@supports (overflow:clip) {
  #page-quote {
    overflow-x:clip;
  }
}

@keyframes quoteRiseIn {
  from {
    opacity:0;
    transform:translateY(16px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes quoteLineIn {
  from {
    opacity:0;
    transform:scaleX(.72);
  }
  to {
    opacity:1;
    transform:scaleX(1);
  }
}

@keyframes quoteFloating {
  0% { transform:translateY(0); }
  50% { transform:translateY(10px); }
  100% { transform:translateY(0); }
}

#page-quote .quote-brand-logo,
#page-quote .quote-hero h1,
#page-quote .quote-hero .quote-sub,
#page-quote .quote-start-link,
#page-quote .quote-steps,
#page-quote .quote-card {
  opacity:0;
  animation:quoteRiseIn 1.45s cubic-bezier(.19,1,.22,1) both;
}

#page-quote .quote-brand-logo { animation-delay:.08s; }
#page-quote .quote-hero h1 { animation-delay:.24s; }
#page-quote .quote-hero .quote-sub { animation-delay:.40s; }
#page-quote .quote-start-link { animation-delay:.54s; }
#page-quote .quote-steps { animation-delay:.72s; }
#page-quote .quote-card { animation-delay:.90s; }

#page-quote .quote-step[data-step="1"] > h2,
#page-quote .quote-step[data-step="1"] > .quote-grid {
  opacity:0;
  animation:quoteRiseIn 1.2s cubic-bezier(.19,1,.22,1) both;
}

#page-quote .quote-step[data-step="1"] > h2 { animation-delay:1.06s; }
#page-quote .quote-step[data-step="1"] > .quote-grid { animation-delay:1.20s; }

#page-quote .quote-step.quote-step-enter > h2,
#page-quote .quote-step.quote-step-enter > .quote-step-head,
#page-quote .quote-step.quote-step-enter > .quote-hint,
#page-quote .quote-step.quote-step-enter > .quote-grid,
#page-quote .quote-step.quote-step-enter > .quote-list,
#page-quote .quote-step.quote-step-enter > .quote-plans,
#page-quote .quote-step.quote-step-enter > .quote-result,
#page-quote .quote-step.quote-step-enter > .quote-fields,
#page-quote .quote-step.quote-step-enter > .privacy-agreement,
#page-quote .quote-step.quote-step-enter > .quote-process {
  opacity:0;
  animation:quoteRiseIn 1.18s cubic-bezier(.19,1,.22,1) both;
}

#page-quote .quote-step.quote-step-enter > h2 { animation-delay:.06s; }
#page-quote .quote-step.quote-step-enter > .quote-step-head { animation-delay:.06s; }
#page-quote .quote-step.quote-step-enter > .quote-hint { animation-delay:.18s; }
#page-quote .quote-step.quote-step-enter > .quote-grid,
#page-quote .quote-step.quote-step-enter > .quote-list,
#page-quote .quote-step.quote-step-enter > .quote-plans,
#page-quote .quote-step.quote-step-enter > .quote-result { animation-delay:.30s; }
#page-quote .quote-step.quote-step-enter > .quote-fields { animation-delay:.42s; }
#page-quote .quote-step.quote-step-enter > .privacy-agreement { animation-delay:.54s; }
#page-quote .quote-step.quote-step-enter > .quote-process { animation-delay:.66s; }

#page-quote .quote-shell {
  width:100%;
  max-width:min(var(--quote-maxw), 100%);
  margin:0 auto;
  padding:26px clamp(12px, 4.8vw, 20px) 112px;
  min-height:100vh;
  min-width:0;
}

#page-quote .quote-hero { padding:0 0 12px; min-width:0; }

#page-quote .quote-brand-logo {
  display:inline-flex;
  align-items:center;
  width:154px;
  height:70px;
  margin-bottom:16px;
  text-decoration:none;
}

#page-quote .quote-brand-logo img {
  width:auto;
  height:70px;
  display:block;
  object-fit:contain;
}

#page-quote .quote-hero h1 {
  font-size:30px;
  font-weight:700;
  line-height:1.24;
  color:var(--quote-ink);
  margin:0;
  white-space:nowrap;
  max-width:100%;
  transform-origin:left top;
}

#page-quote .quote-hero h1 b { color:var(--quote-red); font-weight:700; }

#page-quote .quote-hero .quote-sub {
  margin-top:14px;
  color:var(--quote-muted);
  font-size:16px;
  line-height:1.6;
  white-space:nowrap;
  max-width:100%;
  transform-origin:left top;
}

#page-quote .quote-hero .quote-sub b { color:var(--quote-ink-2); font-weight:700; }

#page-quote .quote-steps { display:flex; gap:8px; margin:2px 0 24px; min-width:0; }

#page-quote .quote-dot {
  flex:1;
  min-width:0;
  text-align:center;
  font-size:15px;
  font-weight:700;
  color:var(--quote-muted);
  padding:12px 0;
  border-radius:0;
  background:transparent;
  border:1px solid var(--quote-line);
  transition:border-color .2s ease, color .2s ease, background .2s ease;
}

#page-quote .quote-dot.on { color:#fff; background:var(--quote-red); border-color:var(--quote-red); }
#page-quote .quote-dot.done { color:#d1d5db; background:rgba(255,255,255,.055); border-color:rgba(255,255,255,.16); }

#page-quote #quoteStepbar {
  display:grid;
  grid-template-columns:max-content minmax(34px,1fr) max-content minmax(34px,1fr) max-content minmax(34px,1fr) max-content;
  align-items:center;
  column-gap:10px;
  margin:8px 0 18px;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

#page-quote #quoteStepbar .quote-dot {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  min-width:0;
  padding:0;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.54);
  text-align:left;
}

#page-quote #quoteStepbar .quote-step-line {
  display:block;
  width:100%;
  height:2px;
  background:rgba(255,255,255,.34);
  transition:background .2s ease;
}

#page-quote #quoteStepbar .quote-step-line.on {
  background:var(--quote-red);
}

#page-quote #quoteStepbar .quote-step-num {
  box-sizing:border-box;
  flex:0 0 28px;
  width:28px;
  height:28px;
  min-width:28px;
  max-width:28px;
  min-height:28px;
  max-height:28px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.68);
  background:transparent;
  font-size:13px;
  font-weight:600;
  line-height:1;
}

#page-quote #quoteStepbar .quote-step-label {
  min-width:0;
  color:inherit;
  font-size:17px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

#page-quote #quoteStepbar .quote-dot.on,
#page-quote #quoteStepbar .quote-dot.done {
  border:0;
  background:transparent;
}

#page-quote #quoteStepbar .quote-dot.on .quote-step-label {
  color:var(--quote-red);
}

#page-quote #quoteStepbar .quote-dot.on .quote-step-num {
  box-sizing:border-box;
  flex-basis:28px;
  width:28px;
  height:28px;
  min-width:28px;
  max-width:28px;
  min-height:28px;
  max-height:28px;
  border-color:var(--quote-red);
  color:#fff;
  background:var(--quote-red);
}

#page-quote #quoteStepbar .quote-dot.done .quote-step-num {
  border-color:rgba(255,255,255,.28);
  color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.06);
}

#page-quote .quote-card {
  background:var(--quote-surface);
  border:1px solid var(--quote-line);
  border-radius:var(--quote-radius);
  padding:var(--quote-pad);
  min-height:320px;
  width:100%;
  min-width:0;
}

#page-quote #quoteForm.quote-card {
  background:transparent;
  border:0;
  padding:0;
  min-height:0;
}

#page-quote .quote-step h2 {
  font-size:20px;
  font-weight:700;
  color:var(--quote-ink);
  margin:0;
}

#page-quote .quote-step-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}

#page-quote .quote-step-head h2 {
  min-width:0;
}

#page-quote .quote-prev-inline {
  flex:0 0 auto;
  min-width:56px;
  height:32px;
  padding:0 12px;
  border:1px solid var(--quote-line-2);
  border-radius:0;
  background:transparent;
  color:var(--quote-ink-2);
  font-family:inherit;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}

#page-quote .quote-prev-inline:hover {
  background:var(--quote-surface-2);
  border-color:rgba(255,255,255,.3);
  color:#fff;
}

#page-quote .quote-step .quote-hint { margin-top:10px; color:var(--quote-muted); font-size:15px; font-weight:500; }
#page-quote .quote-hidden { display:none !important; }
#page-quote .quote-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-top:22px; min-width:0; }

#page-quote .quote-opt {
  min-width:0;
  min-height:64px;
  padding:17px 12px;
  border:1px solid var(--quote-line-2);
  border-radius:0;
  background:transparent;
  font-size:16px;
  font-weight:600;
  color:var(--quote-ink-2);
  cursor:pointer;
  text-align:center;
  overflow-wrap:break-word;
  transition:border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

#page-quote .quote-opt:hover { border-color:rgba(255,44,44,.72); color:var(--quote-ink); background:rgba(255,255,255,.03); }
#page-quote .quote-opt.sel { border-color:var(--quote-red); background:var(--quote-red-soft); color:#fff; }
#page-quote .quote-opt-wide { grid-column:1 / -1; }
#page-quote .quote-list { display:flex; flex-direction:column; gap:16px; margin-top:22px; }

#page-quote .quote-opt-etc {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  overflow:hidden;
  min-width:0;
}

#page-quote .quote-opt-etc.is-open {
  justify-content:flex-start;
  text-align:left;
}

#page-quote .quote-etc-label {
  flex:0 0 auto;
  min-width:46px;
  text-align:center;
  transition:text-align .2s ease;
}

#page-quote .quote-opt-etc.is-open .quote-etc-label {
  text-align:left;
}

#page-quote .quote-custom-industry {
  display:none;
  flex:1;
  gap:10px;
  min-width:0;
}

#page-quote .quote-opt-etc.is-open .quote-custom-industry {
  display:flex;
}

#page-quote .quote-custom-industry input {
  flex:1;
  min-width:0;
  height:42px;
  padding:0 14px;
  border:1px solid var(--quote-line-2);
  border-radius:0;
  background:rgba(255,255,255,.035);
  color:var(--quote-ink);
  font-family:inherit;
  font-size:16px;
  font-weight:600;
}

#page-quote .quote-custom-industry input::placeholder { color:rgba(255,255,255,.38); }
#page-quote .quote-custom-industry input:focus { outline:none; border-color:var(--quote-red); }

#page-quote .quote-custom-industry button {
  flex:0 0 72px;
  min-width:0;
  border:1px solid var(--quote-red);
  border-radius:0;
  background:var(--quote-red);
  color:#fff;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}

#page-quote .quote-opt-row {
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:22px 20px 21px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:0;
  background:rgba(255,255,255,.035);
  cursor:pointer;
  text-align:left;
  min-width:0;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}

#page-quote .quote-opt-row:hover {
  border-color:rgba(255,44,44,.72);
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
#page-quote .quote-opt-row.sel { border-color:var(--quote-red); background:rgba(255,44,44,.10); }
#page-quote .quote-row-head { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; min-width:0; }
#page-quote .quote-row-head b { min-width:0; font-size:18px; font-weight:700; color:var(--quote-ink); line-height:1.3; }
#page-quote .quote-row-tag {
  display:block;
  padding-bottom:11px;
  border-bottom:1px solid rgba(255,255,255,.09);
  font-size:14px;
  color:rgba(255,255,255,.72);
  line-height:1.55;
  margin-top:-8px;
  font-weight:500;
  white-space:nowrap;
}
#page-quote .quote-price-stack { display:flex; flex-direction:column; align-items:flex-end; gap:2px; flex:0 0 auto; text-align:right; }
#page-quote .quote-row-price { font-size:18px; font-weight:700; color:var(--quote-red); white-space:nowrap; line-height:1.2; }
#page-quote .quote-tax-note { font-size:12.5px; font-weight:500; color:rgba(255,255,255,.58); white-space:nowrap; }

#page-quote .quote-feats {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px;
  min-width:0;
}

#page-quote .quote-feats li,
#page-quote .quote-plan li {
  position:relative;
  padding-left:19px;
  font-size:14px;
  color:rgba(255,255,255,.78);
  line-height:1.5;
  font-weight:400;
  white-space:nowrap;
}

#page-quote .quote-feats li::before,
#page-quote .quote-plan li::before {
  content:"";
  position:absolute;
  left:2px;
  top:5.5px;
  width:5px;
  height:9px;
  border:solid var(--quote-red);
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

#page-quote .quote-plans { display:flex; flex-direction:column; gap:16px; margin-top:22px; }

#page-quote .quote-plan {
  position:relative;
  padding:22px 20px 21px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:0;
  background:rgba(255,255,255,.035);
  cursor:pointer;
  text-align:left;
  min-width:0;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}

#page-quote .quote-plan:hover {
  border-color:rgba(255,44,44,.72);
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
#page-quote .quote-plan.sel { border-color:var(--quote-red); background:rgba(255,44,44,.10); }
#page-quote .quote-plan.best { border-color:rgba(255,255,255,.14); }
#page-quote .quote-plan.best:hover { border-color:rgba(255,44,44,.72); }
#page-quote .quote-plan.best.sel { border-color:var(--quote-red); }

#page-quote .quote-tag {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:var(--quote-red);
  color:#fff;
  font-size:11px;
  font-weight:600;
  letter-spacing:0;
  line-height:1;
  padding:4px 8px;
  margin-right:8px;
  border-radius:0;
}

#page-quote .quote-plan-head { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; min-width:0; }
#page-quote .quote-plan-name { display:inline-flex; align-items:center; min-width:0; font-size:18px; font-weight:700; color:var(--quote-ink); line-height:1.3; }
#page-quote .quote-plan-price { display:block; font-size:18px; font-weight:700; color:var(--quote-red); line-height:1.2; }
#page-quote .quote-plan ul {
  margin:11px 0 0;
  padding:11px 0 0;
  border-top:1px solid rgba(255,255,255,.09);
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px;
  min-width:0;
}
#page-quote .quote-plan li { padding-left:20px; }

#page-quote .quote-result {
  background:rgba(255,255,255,.025);
  border:1px solid var(--quote-line-2);
  border-radius:0;
  padding:20px;
  margin-top:20px;
  min-width:0;
}

#page-quote .quote-r-line {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:12px;
  padding:7px 0;
  font-size:15px;
  color:var(--quote-ink-2);
  font-weight:500;
}

#page-quote .quote-r-line > span:first-child { min-width:0; }
#page-quote .quote-r-line b { font-weight:700; color:var(--quote-ink); }
#page-quote .quote-r-total { border-top:1px solid var(--quote-line-2); margin-top:8px; padding-top:13px; }
#page-quote .quote-r-total .quote-v { font-size:23px; font-weight:700; color:var(--quote-red); }
#page-quote .quote-v-sub { font-size:17px; font-weight:700; color:var(--quote-red); }
#page-quote .quote-r-note { margin-top:13px; font-size:13.5px; color:rgba(255,255,255,.58); font-weight:500; line-height:1.45; }
#page-quote .quote-r-note::before { content:"※ "; }
#page-quote .quote-process {
  margin-top:26px;
  border:1px solid rgba(255,44,44,.28);
  border-radius:0;
  padding:20px;
  background:rgba(255,255,255,.04);
}
#page-quote .quote-proc-title { font-size:16px; font-weight:700; color:var(--quote-ink); margin-bottom:16px; }
#page-quote .quote-process ol { list-style:none; margin:0; padding:0; }
#page-quote .quote-process li { display:flex; align-items:center; gap:12px; padding:8px 0; min-width:0; }

#page-quote .quote-proc-num {
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--quote-surface-2);
  color:var(--quote-muted);
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.16);
}

#page-quote .now .quote-proc-num { background:var(--quote-red); border-color:var(--quote-red); color:#fff; }
#page-quote .quote-proc-body { display:flex; align-items:baseline; gap:5px; padding-top:0; white-space:nowrap; }
#page-quote .quote-proc-body { min-width:0; }
#page-quote .quote-proc-body b { font-size:15.5px; font-weight:700; color:var(--quote-ink); }
#page-quote .now .quote-proc-body b { color:var(--quote-red); }
#page-quote .quote-proc-body small { font-size:13.5px; color:var(--quote-ink-2); font-weight:500; }
#page-quote .quote-proc-body small::before { content:"("; }
#page-quote .quote-proc-body small::after { content:")"; }
#page-quote .quote-fields { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px 16px; margin:30px 0 24px; }
#page-quote .quote-fields label { display:flex; flex-direction:column; gap:8px; color:var(--quote-ink-2); min-width:0; }
#page-quote .quote-field-label { display:inline-flex; align-items:baseline; gap:3px; font-size:15px; font-weight:700; color:var(--quote-ink-2); }
#page-quote .quote-field-label b { color:var(--quote-red); font-size:15px; font-weight:700; }

#page-quote .quote-fields input {
  width:100%;
  padding:12px 0;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.4);
  border-radius:0;
  font-size:16px;
  font-family:inherit;
  font-weight:600;
  background:transparent;
  color:var(--quote-ink);
  transition:border-color .2s ease;
}

#page-quote .quote-fields input::placeholder { color:rgba(255,255,255,.3); }
#page-quote .quote-fields input:focus { outline:none; border-bottom-color:var(--quote-red); box-shadow:none; }

#page-quote .privacy-agreement {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  margin-bottom:0;
  width:100%;
}

#page-quote .privacy-consent-row {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-wrap:wrap;
  width:100%;
  min-width:0;
}

#page-quote .custom-checkbox {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  cursor:pointer;
  font-size:15.5px;
  font-weight:500;
  color:#d1d5db;
  user-select:none;
  line-height:1;
  min-width:0;
}

#page-quote .custom-checkbox input {
  position:absolute;
  opacity:0;
  height:0;
  width:0;
}

#page-quote .checkmark {
  height:20px;
  width:20px;
  background-color:transparent;
  border:1px solid rgba(255,255,255,.4);
  border-radius:3px;
  margin-right:12px;
  flex-shrink:0;
  position:relative;
  transition:all .3s ease;
}

#page-quote .checkbox-text {
  display:inline-block;
  padding-top:1px;
  min-width:0;
  line-height:1.35;
}

#page-quote .custom-checkbox:hover input ~ .checkmark {
  border-color:#ff2c2c;
}

#page-quote .custom-checkbox input:checked ~ .checkmark {
  background-color:#ff2c2c;
  border-color:#ff2c2c;
}

#page-quote .checkmark::after {
  content:"";
  position:absolute;
  display:none;
  left:6px;
  top:2px;
  width:5px;
  height:10px;
  border:solid white;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

#page-quote .custom-checkbox input:checked ~ .checkmark::after {
  display:block;
}

#page-quote .custom-checkbox .req {
  color:#ff2c2c;
  margin-left:6px;
}

#page-quote .privacy-toggle {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  transition:opacity .2s;
}

#page-quote .privacy-toggle::before {
  content:"";
  width:0;
  height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:7px solid #ff2c2c;
  transition:transform .2s, border-top-color .2s;
}

#page-quote .privacy-toggle:hover {
  opacity:.72;
}

#page-quote .privacy-toggle[aria-expanded="true"]::before {
  transform:rotate(90deg);
  border-top-color:#ff2c2c;
}

#page-quote .privacy-terms-box {
  width:100%;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-8px);
  margin-top:0;
  border:1px solid transparent;
  background:rgba(255,255,255,.035);
  padding:0 20px;
  text-align:left;
  color:rgba(255,255,255,.56);
  font-size:13px;
  line-height:1.7;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.28) rgba(255,255,255,.04);
  transition:max-height .38s cubic-bezier(.22,1,.36,1),
             opacity .24s ease,
             transform .38s cubic-bezier(.22,1,.36,1),
             margin-top .24s ease,
             padding .38s cubic-bezier(.22,1,.36,1),
             border-color .24s ease;
}

#page-quote .privacy-terms-box.is-open {
  max-height:230px;
  overflow-y:auto;
  opacity:1;
  transform:translateY(0);
  margin-top:10px;
  border-color:rgba(255,255,255,.14);
  padding:18px 20px;
}

#page-quote .privacy-terms-box h3,
#page-quote .privacy-terms-box .privacy-term-heading {
  color:rgba(255,255,255,.64);
  font-size:13px;
  font-weight:700;
  margin:16px 0 6px;
}

#page-quote .privacy-terms-box h3 {
  margin-top:0;
}

#page-quote .privacy-terms-box p {
  margin:6px 0;
}

#page-quote .privacy-terms-box p,
#page-quote .privacy-terms-box li,
#page-quote .privacy-terms-box h3,
#page-quote .privacy-terms-box .privacy-term-heading {
  font-size:13px;
}

#page-quote .privacy-terms-box ul {
  margin:4px 0 10px;
  padding-left:16px;
}

#page-quote .privacy-terms-box li {
  margin:2px 0;
}

#page-quote .privacy-terms-box::-webkit-scrollbar {
  width:8px;
}

#page-quote .privacy-terms-box::-webkit-scrollbar-track {
  background:rgba(255,255,255,.04);
}

#page-quote .privacy-terms-box::-webkit-scrollbar-thumb {
  background:rgba(255,255,255,.28);
  border:2px solid rgba(255,255,255,.04);
  border-radius:999px;
}

#page-quote .privacy-terms-box::-webkit-scrollbar-thumb:hover {
  background:rgba(255,255,255,.42);
}

#page-quote .quote-bottom,
body .quote-bottom {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#0b0b0b;
  border-top:1px solid var(--quote-line);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  z-index:10010;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  isolation:isolate;
  transform:translateZ(0);
  font-family:"Pretendard","Apple SD Gothic Neo","Malgun Gothic",system-ui,sans-serif;
}

#page-quote .quote-bottom::before,
body .quote-bottom::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:#0b0b0b;
  pointer-events:none;
}

#page-quote:not(.active) .quote-bottom { display:none; }
#page-quote .quote-bottom > *,
body .quote-bottom > * { width:100%; max-width:min(var(--quote-maxw), 100%); margin:0 auto; }

#page-quote .quote-bottom-actions,
body .quote-bottom-actions {
  display:flex;
  gap:10px;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  min-width:0;
}

#page-quote .quote-cta,
body .quote-cta {
  flex:1;
  min-width:0;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:0;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  font-family:inherit;
  line-height:1;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

#page-quote .quote-cta:hover,
body .quote-cta:hover { transform:none; }

#page-quote .quote-cta-phone,
body .quote-cta-phone {
  background:#ff2c2c;
  border:1px solid #ff2c2c;
  color:#fff;
}

#page-quote .quote-cta-icon,
body .quote-cta-icon {
  width:18px;
  height:18px;
  margin-right:8px;
  fill:currentColor;
  flex:0 0 auto;
}

#page-quote .quote-cta-phone:hover,
body .quote-cta-phone:hover {
  background:#e52626;
  border-color:#e52626;
}

#page-quote .quote-cta-home,
body .quote-cta-home {
  background:transparent;
  border:1px solid var(--quote-line-2);
  color:var(--quote-ink-2);
}

#page-quote .quote-cta-home:hover,
body .quote-cta-home:hover {
  background:var(--quote-surface-2);
  border-color:rgba(255,255,255,.3);
  color:#fff;
}

#page-quote .quote-scroll-shade,
body .quote-scroll-shade {
  position:fixed;
  left:0;
  right:0;
  bottom:var(--quote-bottom-h, 78px);
  height:150px;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  z-index:10007;
  background:linear-gradient(to top, rgba(11,11,11,.96) 0%, rgba(11,11,11,.68) 44%, rgba(11,11,11,0) 100%);
  transition:opacity .35s ease, visibility .35s ease;
}

#page-quote .quote-scroll-hint,
body .quote-scroll-hint {
  position:fixed;
  left:50%;
  bottom:calc(var(--quote-bottom-h, 78px) + 24px);
  transform:translateX(-50%);
  z-index:10008;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}

#page-quote.quote-scroll-visible .quote-scroll-shade,
#page-quote.quote-scroll-visible .quote-scroll-hint,
body.quote-scroll-visible .quote-scroll-shade,
body.quote-scroll-visible .quote-scroll-hint {
  opacity:1;
  visibility:visible;
}

#page-quote .quote-scroll-hint .mouse-shape,
body .quote-scroll-hint .mouse-shape {
  width:20px;
  height:32px;
  border:2px solid #fff;
  border-radius:10px;
  position:relative;
  box-sizing:border-box;
  animation:quoteFloating 2s infinite ease-in-out;
  filter:drop-shadow(0 4px 6px rgba(0,0,0,1)) drop-shadow(0 0 15px rgba(0,0,0,.9));
}

#page-quote .quote-scroll-hint .mouse-shape::before,
body .quote-scroll-hint .mouse-shape::before {
  content:"";
  position:absolute;
  top:9px;
  left:0;
  width:100%;
  height:2px;
  background:#fff;
}

#page-quote .quote-scroll-hint .mouse-shape::after,
body .quote-scroll-hint .mouse-shape::after {
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:2px;
  height:9px;
  background:#fff;
  transform:translateX(-50%);
}

#page-quote .quote-form-nav {
  display:flex;
  gap:10px;
  padding-top:18px;
  min-width:0;
}

#page-quote .quote-btn {
  flex:1;
  min-width:0;
  padding:16px;
  border:1px solid rgba(255,44,44,.8);
  border-radius:0;
  font-size:17px;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  background:var(--quote-red);
  color:#fff;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

#page-quote .quote-btn:hover:not(:disabled) { background:var(--quote-red-ink); border-color:var(--quote-red-ink); transform:translateY(-1px); }
#page-quote .quote-btn:disabled { background:#333; color:#777; cursor:not-allowed; }
#page-quote .quote-btn.ghost { flex:0 0 92px; background:transparent; color:var(--quote-ink-2); border:1px solid var(--quote-line-2); }
#page-quote .quote-btn.ghost:hover { background:var(--quote-surface-2); border-color:rgba(255,255,255,.3); }
#page-quote .quote-faq {
  position:relative;
  margin-top:32px;
  padding-top:24px;
  min-width:0;
}

#page-quote .quote-faq::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,.14);
  opacity:0;
  transform:scaleX(.72);
  transform-origin:left center;
}

#page-quote .quote-faq h2,
#page-quote .quote-faq-item,
#page-quote .quote-faq-note,
#page-quote .quote-faq-list::before,
#page-quote .quote-faq-item::after {
  opacity:0;
  transform:translateY(16px);
}

#page-quote .quote-faq.quote-faq-enter h2,
#page-quote .quote-faq.quote-faq-enter .quote-faq-item,
#page-quote .quote-faq.quote-faq-enter .quote-faq-note {
  animation:quoteRiseIn 1.18s cubic-bezier(.19,1,.22,1) both;
}

#page-quote .quote-faq.quote-faq-enter::before {
  animation:quoteLineIn 1.18s cubic-bezier(.19,1,.22,1) .02s both;
}

#page-quote .quote-faq.quote-faq-enter .quote-faq-list::before,
#page-quote .quote-faq.quote-faq-enter .quote-faq-item::after {
  animation:quoteLineIn 1.18s cubic-bezier(.19,1,.22,1) both;
}

#page-quote .quote-faq.quote-faq-enter h2 { animation-delay:.04s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-list::before { animation-delay:.12s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(1) { animation-delay:.18s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(1)::after { animation-delay:.24s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(2) { animation-delay:.30s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(2)::after { animation-delay:.36s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(3) { animation-delay:.42s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(3)::after { animation-delay:.48s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(4) { animation-delay:.54s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(4)::after { animation-delay:.60s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(5) { animation-delay:.66s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-item:nth-child(5)::after { animation-delay:.72s; }
#page-quote .quote-faq.quote-faq-enter .quote-faq-note { animation-delay:.78s; }

#page-quote .quote-faq h2 {
  font-size:20px;
  font-weight:700;
  color:var(--quote-ink);
  margin:0 0 14px;
  line-height:1.35;
}

#page-quote .quote-faq-list {
  position:relative;
  padding-top:1px;
}

#page-quote .quote-faq-item {
  position:relative;
}

#page-quote .quote-faq-list::before,
#page-quote .quote-faq-item::after {
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,.10);
  transform:scaleX(.72);
  transform-origin:left center;
}

#page-quote .quote-faq-list::before {
  top:0;
}

#page-quote .quote-faq-item::after {
  bottom:0;
}

#page-quote .quote-faq-question {
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:17px 0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--quote-ink-2);
  font-family:inherit;
  font-size:15.5px;
  font-weight:600;
  line-height:1.45;
  text-align:left;
  cursor:pointer;
}

#page-quote .quote-faq-question::after {
  content:"";
  flex:0 0 8px;
  width:8px;
  height:8px;
  border-right:1.5px solid rgba(255,255,255,.62);
  border-bottom:1.5px solid rgba(255,255,255,.62);
  transform:rotate(45deg) translateY(-2px);
  transition:transform .28s ease, border-color .28s ease;
}

#page-quote .quote-faq-question:hover,
#page-quote .quote-faq-item.is-open .quote-faq-question {
  color:#fff;
}

#page-quote .quote-faq-item.is-open .quote-faq-question::after {
  border-color:var(--quote-red);
  transform:rotate(225deg) translate(-2px, -2px);
}

#page-quote .quote-faq-answer {
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-4px);
  transition:max-height .36s cubic-bezier(.22,1,.36,1), opacity .24s ease, transform .36s cubic-bezier(.22,1,.36,1), padding-bottom .36s cubic-bezier(.22,1,.36,1);
}

#page-quote .quote-faq-item.is-open .quote-faq-answer {
  max-height:240px;
  opacity:1;
  transform:translateY(0);
  padding-bottom:18px;
}

#page-quote .quote-faq-answer p {
  margin:0;
  color:rgba(255,255,255,.66);
  font-size:14px;
  font-weight:300;
  line-height:1.75;
}

#page-quote .quote-faq-link {
  color:inherit;
  text-decoration:none;
}

#page-quote .quote-faq-link span {
  color:var(--quote-red);
  text-decoration:underline;
  text-underline-offset:3px;
}

#page-quote .quote-faq-note {
  margin:16px 0 0;
  color:rgba(255,255,255,.54);
  font-size:13.5px;
  font-weight:300;
  line-height:1.65;
}

#page-quote .quote-copyright {
  text-align:left;
  font-size:13px;
  color:#888;
  margin:28px 0 4px;
  opacity:0;
  transform:translateY(16px);
}

#page-quote .quote-copyright.quote-copyright-enter {
  animation:quoteRiseIn 1.18s cubic-bezier(.19,1,.22,1) .10s both;
}
#page-quote .quote-done { text-align:center; padding:48px 20px; }

#page-quote .quote-done .quote-ic {
  width:64px;
  height:64px;
  border-radius:0;
  background:var(--quote-red);
  color:#fff;
  font-size:32px;
  line-height:64px;
  margin:0 auto 20px;
}

#page-quote .quote-done h2 { font-size:22px; font-weight:700; color:var(--quote-ink); margin:0; }
#page-quote .quote-done p { margin-top:10px; color:var(--quote-muted); font-size:14px; }
#page-quote .quote-done .quote-call { margin-top:6px; color:var(--quote-red); font-weight:600; }

#page-quote.quote-detail-page .quote-detail-tabs {
  gap:10px;
}

#page-quote.quote-detail-page .quote-detail-tabs .quote-dot {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-family:inherit;
  line-height:1;
  text-decoration:none;
}

#page-quote.quote-detail-page .quote-detail-tabs a.quote-dot,
#page-quote.quote-detail-page .quote-detail-tabs a.quote-dot:hover,
#page-quote.quote-detail-page .quote-detail-tabs a.quote-dot:focus {
  text-decoration:none;
}

#page-quote.quote-detail-page .quote-detail-tabs .quote-dot:not(.on) {
  color:#d1d5db;
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.16);
}

#page-quote.quote-detail-page .quote-detail-tabs .quote-dot.on:hover {
  background:#e52626;
}

#page-quote.quote-detail-page .quote-detail-tabs a.quote-dot:not(.on):hover {
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.24);
  color:#fff;
}

#page-quote .quote-example-card {
  min-height:0;
}

#page-quote .quote-example-panel h2 {
  font-size:20px;
  font-weight:700;
  color:var(--quote-ink);
  margin:0;
}

#page-quote .quote-example-grid {
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:0;
  min-width:0;
}

#page-quote .quote-example-shot {
  position:relative;
  display:block;
  width:100%;
  min-height:220px;
  aspect-ratio:16 / 10;
  border:0;
  margin:0;
  padding:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(255,255,255,.025);
  overflow:hidden;
  color:inherit;
  cursor:pointer;
  font-family:inherit;
  text-decoration:none;
  appearance:none;
  -webkit-appearance:none;
}

#page-quote.quote-detail-page .quote-example-panel.quote-example-enter .quote-example-shot {
  opacity:0;
  animation:quoteRiseIn 1.18s cubic-bezier(.19,1,.22,1) both;
}

#page-quote.quote-detail-page .quote-example-panel.quote-example-enter .quote-example-shot:nth-child(1) { animation-delay:calc(var(--quote-example-delay-base, 0s) + .08s); }
#page-quote.quote-detail-page .quote-example-panel.quote-example-enter .quote-example-shot:nth-child(2) { animation-delay:calc(var(--quote-example-delay-base, 0s) + .22s); }
#page-quote.quote-detail-page .quote-example-panel.quote-example-enter .quote-example-shot:nth-child(3) { animation-delay:calc(var(--quote-example-delay-base, 0s) + .36s); }
#page-quote.quote-detail-page .quote-example-panel.quote-example-enter .quote-example-shot:nth-child(4) { animation-delay:calc(var(--quote-example-delay-base, 0s) + .50s); }

#page-quote .quote-example-shot::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:48%;
  background:linear-gradient(to top, rgba(11,11,11,.94) 0%, rgba(11,11,11,.72) 38%, rgba(11,11,11,0) 100%);
  pointer-events:none;
}

#page-quote .quote-example-shot img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .22s ease;
}

#page-quote .quote-example-shot:hover img {
  opacity:.84;
}

#page-quote .quote-example-title {
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:1;
  color:#fff;
  font-size:19px;
  font-weight:600;
  line-height:1.35;
  text-align:left;
}

body.light-mode #page-quote,
body.light-mode #page-quote .quote-shell,
body.light-mode #page-quote .quote-bottom { background:var(--quote-bg) !important; color:var(--quote-ink) !important; }

@media (max-width:540px) {
  #page-quote { --quote-pad:clamp(16px, 5vw, 24px); }
  #page-quote .quote-shell { padding-top:clamp(18px, 5vw, 26px); }
  #page-quote .quote-hero {
    padding-left:0;
    padding-right:0;
    padding-bottom:10px;
  }
  #page-quote .quote-steps {
    margin-left:0;
    margin-right:0;
    margin-bottom:16px;
  }
  #page-quote .quote-brand-logo {
    width:clamp(118px, 34vw, 154px);
    height:auto;
    margin-bottom:clamp(10px, 3vw, 14px);
  }
  #page-quote .quote-brand-logo img {
    height:auto;
    width:100%;
  }
  #page-quote .quote-hero h1 {
    font-size:clamp(18px, 5.9vw, 25px);
    line-height:1.28;
  }
  #page-quote .quote-hero .quote-sub {
    font-size:clamp(9px, 3.05vw, 13px);
    line-height:1.65;
    margin-top:clamp(10px, 3vw, 14px);
  }
  #page-quote .quote-dot {
    font-size:clamp(13px, 4vw, 15px);
    padding:10px 0;
  }
  #page-quote #quoteStepbar .quote-dot {
    gap:6px;
  }
  #page-quote #quoteStepbar {
    grid-template-columns:max-content minmax(16px,1fr) max-content minmax(16px,1fr) max-content minmax(16px,1fr) max-content;
    column-gap:6px;
  }
  #page-quote #quoteStepbar .quote-step-num {
    flex-basis:24px;
    width:24px;
    height:24px;
    min-width:24px;
    max-width:24px;
    min-height:24px;
    max-height:24px;
    font-size:12px;
  }
  #page-quote #quoteStepbar .quote-dot.on .quote-step-num {
    box-sizing:border-box;
    flex-basis:24px;
    width:24px;
    height:24px;
    min-width:24px;
    max-width:24px;
    min-height:24px;
    max-height:24px;
  }
  #page-quote #quoteStepbar .quote-step-label {
    font-size:14.5px;
  }
  #page-quote .quote-step h2 {
    font-size:clamp(15.5px, 4.45vw, 20px);
    line-height:1.35;
  }
  #page-quote .quote-example-panel h2 {
    font-size:clamp(15.5px, 4.45vw, 20px);
    line-height:1.35;
  }
  #page-quote .quote-example-shot {
    min-height:clamp(168px, 56vw, 220px);
  }
  #page-quote .quote-step-head {
    gap:8px;
  }
  #page-quote .quote-prev-inline {
    min-width:42px;
    height:28px;
    padding:0 8px;
    font-size:12px;
  }
  #page-quote .quote-opt {
    min-height:58px;
    padding:14px 8px;
    font-size:clamp(14px, 4.2vw, 16px);
  }
  #page-quote .quote-opt-etc {
    gap:8px;
  }
  #page-quote .quote-custom-industry {
    gap:8px;
  }
  #page-quote .quote-custom-industry input {
    height:38px;
    padding:0 10px;
    font-size:clamp(13px, 4vw, 16px);
  }
  #page-quote .quote-custom-industry button {
    flex-basis:58px;
    font-size:clamp(13px, 4vw, 16px);
  }
  #page-quote .quote-opt-row,
  #page-quote .quote-plan {
    padding:clamp(16px, 5vw, 20px);
  }
  #page-quote .quote-row-head,
  #page-quote .quote-plan-head {
    gap:8px;
  }
  #page-quote .quote-row-head b,
  #page-quote .quote-plan-name {
    font-size:clamp(15.5px, 4.5vw, 18px);
  }
  #page-quote .quote-row-price {
    font-size:clamp(14.5px, 4.15vw, 18px);
  }
  #page-quote .quote-plan-price {
    font-size:clamp(16px, 4.8vw, 20px);
  }
  #page-quote .quote-tax-note {
    font-size:clamp(10.5px, 3.3vw, 12.5px);
  }
  #page-quote .quote-row-tag {
    font-size:clamp(12px, 3.5vw, 14px);
    margin-top:-8px;
    padding-bottom:10px;
    white-space:normal;
  }
  #page-quote .quote-feats {
    grid-template-columns:1fr;
    gap:9px;
  }
  #page-quote .quote-list,
  #page-quote .quote-plans {
    gap:14px;
  }
  #page-quote .quote-plan ul {
    grid-template-columns:1fr;
    gap:9px;
  }
  #page-quote .quote-feats li,
  #page-quote .quote-plan li {
    font-size:clamp(11.8px, 3.45vw, 14px);
    line-height:1.55;
    padding-left:24px;
  }
  #page-quote .quote-feats li,
  #page-quote .quote-plan li {
    white-space:normal;
  }
  #page-quote .quote-feats li::before,
  #page-quote .quote-plan li::before {
    left:3px;
    top:6px;
  }
  #page-quote .quote-result,
  #page-quote .quote-process {
    padding:clamp(16px, 5vw, 20px);
  }
  #page-quote .quote-process {
    margin-top:24px;
  }
  #page-quote .quote-faq {
    margin-top:28px;
    padding-top:22px;
  }
  #page-quote .quote-faq h2 {
    font-size:clamp(15.5px, 4.45vw, 20px);
  }
  #page-quote .quote-faq-question {
    padding:15px 0;
    font-size:clamp(13px, 3.8vw, 15.5px);
  }
  #page-quote .quote-faq-answer p {
    font-size:clamp(12.5px, 3.55vw, 14px);
  }
  #page-quote .quote-faq-note {
    font-size:clamp(12px, 3.45vw, 13.5px);
  }
  #page-quote .quote-proc-title {
    font-size:clamp(14.5px, 4vw, 16px);
  }
  #page-quote .quote-proc-body b {
    font-size:clamp(13px, 3.65vw, 15.5px);
  }
  #page-quote .quote-proc-body small {
    font-size:clamp(11.5px, 3.2vw, 13.5px);
  }
  #page-quote .quote-r-line {
    font-size:clamp(13px, 3.8vw, 15px);
  }
  #page-quote .quote-r-total .quote-v {
    font-size:clamp(18px, 5.4vw, 23px);
  }
  #page-quote .quote-v-sub {
    font-size:clamp(15px, 4.4vw, 17px);
  }
  #page-quote .quote-field-label {
    font-size:clamp(13px, 3.7vw, 15px);
  }
  #page-quote .quote-fields input {
    font-size:clamp(13px, 3.85vw, 16px);
  }
  #page-quote .quote-fields {
    margin:26px 0 22px;
  }
  #page-quote .custom-checkbox {
    font-size:clamp(13px, 3.75vw, 15.5px);
  }
  #page-quote .quote-bottom-actions,
  body .quote-bottom-actions {
    padding-left:clamp(10px, 4vw, 16px);
    padding-right:clamp(10px, 4vw, 16px);
  }
  #page-quote .quote-cta,
  body .quote-cta {
    min-height:50px;
    font-size:clamp(14px, 4.2vw, 17px);
  }
  #page-quote .quote-scroll-shade,
  body .quote-scroll-shade {
    height:128px;
  }
  #page-quote .quote-scroll-hint,
  body .quote-scroll-hint {
    bottom:calc(var(--quote-bottom-h, 78px) + 18px);
  }
}

@media (max-width:380px) {
  #page-quote .quote-grid { gap:8px; }
}

@media (max-width:340px) {
  #page-quote { --quote-pad:14px; }
  #page-quote .quote-shell {
    padding-left:10px;
    padding-right:10px;
  }
  #page-quote .quote-hero h1 { font-size:18px; }
  #page-quote .quote-hero .quote-sub { font-size:9px; }
  #page-quote .quote-steps { gap:6px; }
  #page-quote .quote-dot { font-size:12.5px; }
  #page-quote #quoteStepbar {
    grid-template-columns:max-content minmax(10px,1fr) max-content minmax(10px,1fr) max-content minmax(10px,1fr) max-content;
    column-gap:4px;
  }
  #page-quote #quoteStepbar .quote-dot {
    gap:4px;
  }
  #page-quote #quoteStepbar .quote-step-num {
    flex-basis:22px;
    width:22px;
    height:22px;
    min-width:22px;
    max-width:22px;
    min-height:22px;
    max-height:22px;
    font-size:11px;
  }
  #page-quote #quoteStepbar .quote-dot.on .quote-step-num {
    box-sizing:border-box;
    flex-basis:22px;
    width:22px;
    height:22px;
    min-width:22px;
    max-width:22px;
    min-height:22px;
    max-height:22px;
  }
  #page-quote #quoteStepbar .quote-step-label {
    font-size:13px;
  }
  #page-quote .quote-step h2 { font-size:15px; }
  #page-quote .quote-example-panel h2 { font-size:15px; }
  #page-quote .quote-faq h2 { font-size:15px; }
  #page-quote .quote-faq-question {
    gap:10px;
    font-size:12.8px;
  }
  #page-quote .quote-prev-inline {
    min-width:38px;
    height:27px;
    padding:0 7px;
    font-size:11.5px;
  }
  #page-quote .quote-opt {
    font-size:13px;
  }
  #page-quote .quote-row-head,
  #page-quote .quote-plan-head {
    gap:6px;
  }
  #page-quote .quote-plan-head {
    flex-wrap:wrap;
  }
  #page-quote .quote-opt-row {
    gap:9px;
  }
  #page-quote .quote-row-price {
    font-size:13px;
  }
  #page-quote .quote-tax-note {
    font-size:10px;
  }
  #page-quote .quote-feats,
  #page-quote .quote-plan ul {
    gap:8px;
  }
  #page-quote .quote-feats li,
  #page-quote .quote-plan li {
    padding-left:23px;
  }
  #page-quote .quote-bottom-actions,
  body .quote-bottom-actions {
    padding-left:8px;
    padding-right:8px;
  }
  #page-quote .quote-fields {
    gap:17px 12px;
    margin:24px 0 20px;
  }
  #page-quote .quote-field-label {
    font-size:12.5px;
  }
  #page-quote .quote-fields input {
    font-size:12.5px;
  }
  #page-quote .quote-cta,
  body .quote-cta {
    font-size:13.5px;
  }
  #page-quote .quote-scroll-hint,
  body .quote-scroll-hint {
    bottom:calc(var(--quote-bottom-h, 78px) + 14px);
  }
}

@media (max-width:768px) {
  #page-quote .quote-bottom,
  body .quote-bottom {
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    transform:none !important;
    width:100vw !important;
    max-width:100vw !important;
    z-index:10010 !important;
  }

  #page-quote .quote-bottom > *,
  body .quote-bottom > * {
    width:100vw !important;
    max-width:100vw !important;
    margin:0 !important;
  }

  #page-quote .quote-bottom-actions,
  body .quote-bottom-actions {
    gap:0;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  #page-quote .quote-cta-phone,
  body .quote-cta-phone {
    border-right:0;
  }

  #page-quote .quote-cta-home,
  body .quote-cta-home {
    border-left:0;
  }
}

@media (prefers-reduced-motion:reduce) {
  #page-quote .quote-brand-logo,
  #page-quote .quote-hero h1,
  #page-quote .quote-hero .quote-sub,
  #page-quote .quote-steps,
  #page-quote .quote-card,
  #page-quote .quote-copyright,
  #page-quote .quote-step[data-step="1"] > h2,
  #page-quote .quote-step[data-step="1"] > .quote-grid,
  #page-quote .quote-step.quote-step-enter > h2,
  #page-quote .quote-step.quote-step-enter > .quote-step-head,
  #page-quote .quote-step.quote-step-enter > .quote-hint,
  #page-quote .quote-step.quote-step-enter > .quote-grid,
  #page-quote .quote-step.quote-step-enter > .quote-list,
  #page-quote .quote-step.quote-step-enter > .quote-plans,
  #page-quote .quote-step.quote-step-enter > .quote-result,
  #page-quote .quote-step.quote-step-enter > .quote-fields,
  #page-quote .quote-step.quote-step-enter > .privacy-agreement,
  #page-quote .quote-step.quote-step-enter > .quote-process,
  #page-quote .quote-faq h2,
  #page-quote .quote-faq-item,
  #page-quote .quote-faq-note,
  #page-quote .quote-faq::before,
  #page-quote .quote-faq-list::before,
  #page-quote .quote-faq-item::after {
    opacity:1;
    transform:none;
    animation:none;
  }
  #page-quote .quote-scroll-hint .mouse-shape {
    animation:none;
  }
}

/* Quote first-screen start CTA */
#page-quote .quote-start-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  margin-top:16px;
  padding:0 20px;
  border:1px solid var(--quote-red);
  background:var(--quote-red);
  color:#fff;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
}

#page-quote .quote-start-link:hover,
#page-quote .quote-start-link:focus-visible {
  background:var(--quote-red-ink);
  border-color:var(--quote-red-ink);
  outline:none;
}
