/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#F7F5F4;
  --surface:#FFFFFF;
  --surface2:#F1EEEE;
  --red:#C8102E;
  --red-l:#E03040;
  --red-dim:rgba(200,16,46,.09);
  --red-b:rgba(200,16,46,.28);
  --black:#160B0B;
  --text:#2E1B1B;
  --dim:#756363;
  --border:rgba(0,0,0,.09);
  --border-r:rgba(200,16,46,.22);
  --ok:#1D8A5E;
  --ok-d:rgba(29,138,94,.1);
  --err:#C0392B;
  --err-d:rgba(192,57,43,.08);
  --ff:"Outfit",Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --fb:"Outfit",Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* ─── BASE ──────────────────────────────────────────────────────────────────── */
body{
  font-family:var(--fb);
  background:
    radial-gradient(circle at top left, rgba(200,16,46,.07), transparent 30rem),
    linear-gradient(180deg,#FAF8F7 0%, var(--bg) 42%, #EFEAEA 100%);
  color:#241818;
  min-height:100vh;
  line-height:1.55;
  letter-spacing:-.006em;
  font-weight:500;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
.hd{
  display:grid;
  grid-template-columns:auto minmax(220px,1fr) auto;
  align-items:center;
  gap:18px;
  padding:14px clamp(18px,4vw,44px);
  min-height:72px;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(0,0,0,.08);
  box-shadow:0 4px 18px rgba(24,8,8,.06);
  position:sticky;
  top:0;
  z-index:10;
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
}
.hd::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:linear-gradient(90deg, var(--red), rgba(200,16,46,.18), transparent 72%);
  pointer-events:none;
}
.hd-logo{
  width:58px;
  height:58px;
  border-radius:14px;
  padding:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hd-logo img{
  width:100%;
  height:100%;
  max-width:none;
  object-fit:contain;
  display:block;
}
.hd-mid{
  text-align:left;
  min-width:0;
  padding-left:0;
}
.hd-app{
  font-family:var(--fb);
  font-size:clamp(1.28rem,2.15vw,1.8rem);
  line-height:1;
  font-weight:850;
  letter-spacing:-.035em;
  color:#160F0F;
  display:flex;
  align-items:baseline;
  gap:.08em;
  white-space:nowrap;
}
.hd-app-red{color:#C8102E;}
.hd-app-black{color:#161111;}
.hd-by{
  color:#7A6F6F;
  font-weight:400;
  letter-spacing:-.025em;
  font-size:.68em;
}
.hd-name{
  font-family:var(--fb);
  margin-top:6px;
  font-size:13px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:.01em;
  color:#4F3E3E;
}
.hd-name span{font-weight:700;color:#6B5959;}
.hd-tag{display:none;}
.hd-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  min-width:max-content;
}
.hd-phone{
  min-height:44px;
  padding:10px 17px;
  border-radius:999px;
  background:#161111;
  color:#fff;
  font-family:var(--fb);
  font-size:13px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-decoration:none;
  border:none;
  transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.hd-phone:hover{background:#ffffff;color:#222222;transform:translateY(-1px);box-shadow:0 12px 24px rgba(0,0,0,.16);
}
.hd-phone-ic{
  display:inline-flex;
  width:16px;
  height:16px;
  align-items:center;
  justify-content:center;
}
.hd-phone-ic svg{width:16px;height:16px;}
.hd-av{
  width:44px;
  height:44px;
  border-radius:999px;
  border:2px solid #fff;
  outline:2px solid rgba(200,16,46,.32);
  object-fit:cover;
  box-shadow:0 8px 18px rgba(26,8,8,.12);
}

/* ─── TOOL SHELL (two-column layout) ───────────────────────────────────────── */
.tool-shell{
  max-width:1180px;
  margin:0 auto;
  padding:clamp(24px,4vw,54px) clamp(16px,3vw,32px) 72px;
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(420px,1.15fr);
  gap:clamp(24px,4vw,56px);
  align-items:start;
}

/* ─── HERO (sticky sidebar) ─────────────────────────────────────────────────── */
.hero{
  position:sticky;
  top:92px;
  padding:0;
  text-align:left;
  background:transparent;
  border-bottom:0;
}
.hero-card{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(0,0,0,.08);
  border-radius:28px;
  padding:clamp(24px,4vw,42px);
  box-shadow:0 20px 55px rgba(26,8,8,.08);
  backdrop-filter:blur(14px);
}
.hero-eye{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:7px 11px;
  border:1px solid var(--red-b);
  border-radius:999px;
  background:var(--red-dim);
  letter-spacing:.12em;
  font-size:10px;
  font-weight:800;
  color:var(--red);
  text-transform:uppercase;
}
.hero-h1{
  font-family:var(--fb);
  font-size:clamp(2.25rem,5.2vw,4.35rem);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.055em;
  color:#151010;
  margin-bottom:18px;
}
.hero-h1 em{
  font-family:var(--fb);
  font-style:normal;
  color:var(--red);
  font-weight:900;
  letter-spacing:-.045em;
}
.hero-p{
  max-width:560px;
  margin:0;
  color:#514242;
  font-size:15.5px;
  line-height:1.75;
  font-weight:500;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;}
.hero-link{color:var(--red);font-weight:700;text-decoration:none;font-size:13px;display:inline-flex;align-items:center;gap:6px;}
.hero-link:hover{text-decoration:underline;}

/* Trust strip */
.trust-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:22px;}
.trust-item{background:#fff;border:1px solid var(--border);border-radius:16px;padding:14px;box-shadow:0 8px 22px rgba(26,8,8,.045);}
.trust-k{font-size:11px;color:var(--dim);text-transform:uppercase;letter-spacing:.08em;font-weight:800;margin-bottom:4px;}
.trust-v{font-size:14px;color:var(--black);font-weight:700;line-height:1.25;}

/* Process card */
.process-card{margin-top:16px;background:var(--black);color:#fff;border-radius:24px;padding:22px;box-shadow:0 18px 42px rgba(26,8,8,.14);}
.process-card h3{font-family:var(--fb);font-size:15px;margin-bottom:14px;letter-spacing:-.01em;}
.process-list{display:grid;gap:12px;list-style:none;}
.process-list li{display:grid;grid-template-columns:28px 1fr;gap:10px;align-items:start;color:rgba(255,255,255,.74);font-size:13px;line-height:1.45;}
.process-list b{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:var(--red);color:#fff;font-size:12px;}

/* ─── MAIN (tool area) ──────────────────────────────────────────────────────── */
.main{max-width:none;margin:0;padding:0;min-width:0;}

/* Tool card wrapper */
.tool-card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(26,8,8,.09);
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 100%);
  box-shadow:0 28px 70px rgba(26,8,8,.13), 0 2px 0 rgba(255,255,255,.9) inset;
  padding:clamp(18px,3vw,30px);
}
.tool-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg,var(--red),#EE5C6D 48%,rgba(200,16,46,.22));
  pointer-events:none;
}

/* Tool header */
.tool-topper{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
  padding:4px 2px 20px;
  border-bottom:1px solid rgba(26,8,8,.08);
}
.tool-kicker{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#9F1027;font-weight:800;margin-bottom:4px;}
.tool-title{font-family:var(--fb);font-size:clamp(22px,2.2vw,30px);line-height:1.08;letter-spacing:-.045em;color:var(--black);font-weight:900;}
.tool-note{font-size:12.5px;color:#806969;line-height:1.5;max-width:190px;text-align:right;}

/* ─── STEP INDICATOR ────────────────────────────────────────────────────────── */
.s-ind{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  margin:0 0 28px;
  padding:12px 14px;
  border-radius:20px;
  background:#FBF8F8;
  border:1px solid rgba(26,8,8,.08);
  box-shadow:0 8px 20px rgba(26,8,8,.04) inset;
  overflow-x:auto;
}
.si-dot{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  border:1px solid;
  transition:all .3s;
  flex-shrink:0;
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset;
}
.si-dot.done{background:var(--red);border-color:var(--red);color:#fff;box-shadow:0 8px 18px rgba(200,16,46,.20);}
.si-dot.active{background:#fff;border-color:var(--red);color:var(--red);box-shadow:0 0 0 5px rgba(200,16,46,.09),0 8px 18px rgba(26,8,8,.06);}
.si-dot.soon{background:#fff;border-color:rgba(26,8,8,.12);color:#927B7B;}
.si-line{height:3px;border-radius:999px;width:clamp(28px,5vw,58px);transition:background .3s;}
.si-line.done{background:linear-gradient(90deg,var(--red),#DD4B59);}
.si-line.soon{background:rgba(26,8,8,.08);}

/* ─── CARDS ─────────────────────────────────────────────────────────────────── */
.card{
  position:relative;
  border-radius:24px;
  padding:clamp(22px,3vw,32px);
  margin-bottom:18px;
  background:linear-gradient(180deg,#FFFFFF 0%,#FFFEFE 70%,#FBF8F8 100%);
  border:1px solid rgba(26,8,8,.09);
  box-shadow:0 18px 40px rgba(26,8,8,.07), 0 1px 0 rgba(255,255,255,.96) inset;
}
.card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:0 0 0 1px rgba(255,255,255,.78) inset;
}
.mb12{margin-bottom:14px}.mb16{margin-bottom:18px}.mb20{margin-bottom:24px}

/* ─── FORM ELEMENTS ─────────────────────────────────────────────────────────── */
.lbl{
  display:block;
  font-size:12px;
  color:#5B4949;
  margin-bottom:8px;
  letter-spacing:.095em;
  text-transform:uppercase;
  font-weight:800;
}
.lbl-req{color:var(--red);margin-left:2px;}
input[type=number],input[type=text],input[type=email],input[type=tel]{
  min-height:50px;
  background:#fff;
  border:1.5px solid rgba(26,8,8,.12);
  border-radius:15px;
  color:#1D1414;
  padding:12px 15px;
  font-family:var(--fb)!important;
  font-size:15.5px;
  font-weight:600;
  width:100%;
  outline:none;
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset,0 8px 18px rgba(26,8,8,.035);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input[type=number]:hover,input[type=text]:hover,input[type=email]:hover,input[type=tel]:hover{
  border-color:rgba(26,8,8,.20);
}
input:focus{
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(200,16,46,.10),0 10px 22px rgba(26,8,8,.05);
}
input::placeholder{color:#7A6A6A;opacity:1;}
select{
  min-height:50px;
  background:#fff;
  border:1.5px solid rgba(26,8,8,.12);
  border-radius:15px;
  color:#1D1414;
  padding:12px 15px;
  font-family:var(--fb)!important;
  font-size:15.5px;
  font-weight:600;
  width:100%;
  outline:none;
  cursor:pointer;
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset,0 8px 18px rgba(26,8,8,.035);
  transition:border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance:none;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8102E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
}
select:hover{border-color:rgba(26,8,8,.20);}
select:focus{border-color:var(--red);box-shadow:0 0 0 4px rgba(200,16,46,.10),0 10px 22px rgba(26,8,8,.05);}
input[type=range]{
  -webkit-appearance:none;
  width:100%;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(200,16,46,.34),rgba(200,16,46,.10));
  outline:none;
  margin:16px 0 9px;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--red);
  cursor:pointer;
  border:3px solid #fff;
  box-shadow:0 0 0 4px rgba(200,16,46,.15),0 8px 18px rgba(26,8,8,.16);
}
.rlb{display:flex;justify-content:space-between;font-size:10.5px;color:#8A7373;font-weight:700;margin-top:6px;}
.inp-err{border-color:var(--err)!important;box-shadow:0 0 0 4px rgba(192,57,43,.10)!important;}
.fld-err{font-size:11px;color:var(--err);margin-top:7px;padding-left:2px;font-weight:700;}
#binput{text-align:left!important;padding-left:28px!important;font-weight:800;color:#1F0C0C;}

/* ─── STEP CONTENT ──────────────────────────────────────────────────────────── */
.sc{animation:fadeUp .3s ease;padding:2px 2px 0;}
@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.st{
  font-family:var(--fb);
  font-size:clamp(25px,3vw,36px);
  font-weight:900;
  text-align:left;
  color:#1E0C0C;
  line-height:1.06;
  letter-spacing:-.05em;
  margin-bottom:9px;
  max-width:620px;
}
.sd2{
  text-align:left;
  color:#6E5757;
  font-size:14.5px;
  line-height:1.65;
  margin-bottom:26px;
  max-width:600px;
  font-weight:500;
}

/* ─── BUDGET DISPLAY ─────────────────────────────────────────────────────────── */
.bv{
  text-align:left;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(26,8,8,.07);
}
.bval{
  font-family:var(--fb);
  font-size:clamp(46px,7vw,68px);
  font-weight:900;
  color:#B90F2B;
  line-height:.92;
  letter-spacing:-.055em;
}
.bunit{
  font-size:11px;
  color:#765E5E;
  margin-top:9px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

/* ─── INLINE STAT ───────────────────────────────────────────────────────────── */
.is{
  margin-top:4px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(29,138,94,.11),rgba(255,255,255,.86));
  border:1px solid rgba(29,138,94,.22);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.is-l{font-size:12.5px;color:#6A5555;font-weight:700;}
.is-v{
  font-family:var(--fb);
  font-size:clamp(22px,3vw,28px);
  font-weight:700;
  letter-spacing:-.025em;
}
.is-v.ok{color:var(--ok);}
.is-v.er{color:var(--err);}

/* ─── INFO BOX ──────────────────────────────────────────────────────────────── */
.info-box{
  background:#F7F1F1;
  border:1px solid rgba(200,16,46,.16);
  border-left:4px solid var(--red);
  border-radius:16px;
  padding:13px 15px;
  font-size:12px;
  color:#6E5757;
  line-height:1.7;
  margin-bottom:12px;
  font-weight:500;
}

/* ─── CONTACT FORM ──────────────────────────────────────────────────────────── */
.cf-g{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:18px;}
.cf-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:#FFF6F7;
  border:1px solid rgba(200,16,46,.18);
  border-radius:16px;
  padding:14px 16px;
  font-size:12px;
  color:#514242;
  margin-bottom:22px;
  line-height:1.75;
  font-weight:500;
}
#s5 .card > div:not(:last-child){margin-bottom:18px;}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn{
  min-height:50px;
  padding:13px 22px;
  border-radius:16px;
  font-family:var(--fb)!important;
  font-size:14.5px;
  font-weight:800;
  letter-spacing:-.005em;
  cursor:pointer;
  border:none;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
}
.btn:hover{transform:translateY(-1px);}
.btn:active{transform:translateY(0);}
.btn-full{width:100%;min-height:54px;}
.btn-g{
  background:linear-gradient(135deg,var(--red) 0%,#A80E25 100%);
  color:#fff;
  box-shadow:0 14px 26px rgba(200,16,46,.22);
}
.btn-g:hover{
  background:linear-gradient(135deg,#D81636 0%,#A80E25 100%);
  box-shadow:0 16px 30px rgba(200,16,46,.27);
}
.btn-g:disabled,.btn-g[disabled]{
  background:#C9BFC1;
  color:#5C4E51;
  border:1px solid rgba(26,8,8,.08);
  box-shadow:none;
  cursor:not-allowed;
  transform:none;
  opacity:1;
}
.btn-s{
  background:#fff;
  border:1.5px solid rgba(26,8,8,.12);
  color:#5E4949;
  box-shadow:0 8px 18px rgba(26,8,8,.04);
  font-weight:800;
}
.btn-s:hover{border-color:rgba(26,8,8,.24);background:#FBF8F8;color:#1F0C0C;}
.btn-og{
  background:#fff;
  border:1.5px solid rgba(200,16,46,.46);
  color:var(--red);
  box-shadow:0 8px 18px rgba(200,16,46,.07);
  font-weight:800;
}
.btn-og:hover{background:var(--red-dim);}
.btn-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:2px;}

/* ─── OPTION CARDS ──────────────────────────────────────────────────────────── */
.opt-g{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:22px;
}
.opt{
  position:relative;
  min-height:104px;
  background:#fff;
  border:1.5px solid rgba(26,8,8,.10);
  border-radius:22px;
  padding:20px 54px 20px 20px;
  cursor:pointer;
  text-align:left;
  display:grid;
  grid-template-columns:46px 1fr;
  column-gap:14px;
  align-items:center;
  transition:all .2s;
  -webkit-user-select:none;
  user-select:none;
  box-shadow:0 10px 24px rgba(26,8,8,.045);
  transform:translateY(0);
}
.opt::before{
  content:"";
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--red-dim);
  grid-column:1;
  grid-row:1 / span 2;
  align-self:center;
}
.opt::after{
  content:"";
  position:absolute;
  top:18px;
  right:18px;
  width:24px;
  height:24px;
  border-radius:50%;
  border:1.5px solid rgba(26,8,8,.16);
  background:#fff;
}
.opt:hover{
  border-color:rgba(200,16,46,.34);
  background:#fff;
  box-shadow:0 16px 30px rgba(200,16,46,.09);
  transform:translateY(-1px);
}
.opt.sel{
  border-color:var(--red);
  background:linear-gradient(180deg,#fff 0%,rgba(200,16,46,.045) 100%);
  box-shadow:0 18px 36px rgba(200,16,46,.13),0 0 0 4px rgba(200,16,46,.075);
}
.opt.sel::after{
  content:"✓";
  display:flex;
  align-items:center;
  justify-content:center;
  border-color:var(--red);
  background:var(--red);
  color:#fff;
  font-size:13px;
  font-weight:900;
}
.opt-ic{
  position:relative;
  z-index:1;
  justify-self:center;
  grid-column:1;
  grid-row:1 / span 2;
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,16,46,.08);
  color:var(--red);
  border:1px solid rgba(200,16,46,.18);
  font-size:25px;
  line-height:1;
}
.opt-ic .ui-ico{width:25px;height:25px;}
.opt-tt{
  font-family:var(--fb);
  font-size:18px;
  font-weight:850;
  letter-spacing:-.03em;
  color:#1F0C0C;
  line-height:1.22;
  margin-bottom:4px;
}
.opt-dd{
  color:#725C5C;
  font-size:12.5px;
  line-height:1.55;
  font-weight:500;
}

/* ─── RESULTS ───────────────────────────────────────────────────────────────── */
.rh{
  background:linear-gradient(135deg,var(--red) 0%,#9D0A20 100%);
  border-radius:22px;
  padding:clamp(22px,3vw,34px);
  margin-bottom:16px;
  text-align:left;
  box-shadow:0 4px 18px rgba(200,16,46,.3);
}
.re{font-size:10px;letter-spacing:.28em;color:rgba(255,255,255,.8);margin-bottom:7px;text-transform:uppercase;font-weight:800;}
.rp{
  font-family:var(--fb);
  font-size:clamp(2.4rem,8vw,3.8rem);
  font-weight:900;
  color:#fff;
  letter-spacing:-.055em;
}
.rs{font-size:12px;color:rgba(255,255,255,.72);margin-top:5px;}

/* ─── SPECIALTY PILLS ───────────────────────────────────────────────────────── */
.spec-bar{display:flex;justify-content:flex-start;gap:8px;margin-bottom:18px;flex-wrap:wrap;}
.spec-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#fff;
  border:1px solid rgba(138,13,33,.22);
  border-radius:20px;
  padding:4px 13px;
  font-size:11px;
  color:#8A0D21;
  font-weight:600;
  box-shadow:0 1px 3px rgba(0,0,0,.06);
}
.spec-pill .ui-ico{width:14px;height:14px;color:#8A0D21;}

/* ─── METRIC CARDS ──────────────────────────────────────────────────────────── */
.mg{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:14px;}
.mc{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:14px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.mi{
  width:34px;
  height:34px;
  border-radius:12px;
  background:rgba(200,16,46,.08);
  color:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px;
}
.mi .ui-ico{width:18px;height:18px;}
.mv{
  font-family:var(--fb);
  font-size:21px;
  font-weight:850;
  color:var(--black);
  letter-spacing:-.025em;
}
.ml{font-size:10px;color:var(--dim);margin-top:1px;text-transform:uppercase;letter-spacing:.04em;}

/* ─── ALERTS ────────────────────────────────────────────────────────────────── */
.al{border-radius:10px;padding:13px 15px;margin-bottom:14px;}
.al-t{
  font-weight:700;
  font-size:13px;
  margin-bottom:3px;
  display:flex;
  align-items:center;
  gap:8px;
}
.al-t .ui-ico{width:16px;height:16px;flex-shrink:0;}
.al-b{font-size:12px;color:#514242;line-height:1.65;font-weight:500;}
.al-ok{background:var(--ok-d);border:1px solid rgba(29,138,94,.25);}
.al-ok .al-t{color:#116B48;}
.al-er{background:var(--err-d);border:1px solid rgba(192,57,43,.22);}
.al-er .al-t{color:#9D1927;}

/* ─── EQUITY DISCLAIMER ─────────────────────────────────────────────────────── */
.eq-disc{background:var(--surface2);border:1px solid var(--border);border-radius:8px;padding:11px 14px;margin-bottom:14px;}
.eq-disc-tt{
  font-size:11px;
  font-weight:800;
  color:var(--black);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.05em;
  display:flex;
  align-items:center;
  gap:8px;
}
.eq-math{font-family:monospace;font-size:11px;color:var(--dim);line-height:2;display:table;width:100%;}
.eq-math span{display:table-row;}
.eq-math span b{display:table-cell;padding-right:8px;text-align:right;color:var(--black);white-space:nowrap;}
.eq-math span i{display:table-cell;color:var(--dim);}

/* ─── PITI BREAKDOWN ────────────────────────────────────────────────────────── */
.piti-box{background:var(--red-dim);border:1px solid var(--red-b);border-radius:8px;padding:11px 14px;margin-bottom:14px;}
.piti-tt{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:var(--red);margin-bottom:8px;}
.piti-row{display:flex;justify-content:space-between;font-size:12px;padding:3px 0;border-bottom:1px dashed rgba(200,16,46,.15);}
.piti-row:last-child{border:none;font-weight:700;font-size:13px;color:var(--black);padding-top:5px;}
.piti-row span:first-child{color:var(--dim);}
.piti-row span:last-child{font-family:var(--fb);font-size:15px;color:var(--black);letter-spacing:-.025em;}

/* ─── GENERAL DISCLAIMER ────────────────────────────────────────────────────── */
.disc{
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:11px 13px;
  font-size:10px;
  color:#514242;
  line-height:1.8;
  margin-bottom:18px;
  font-weight:500;
}

/* ─── EMAIL BAR ─────────────────────────────────────────────────────────────── */
.email-bar{
  background:var(--surface);
  border:1.5px solid var(--border-r);
  border-radius:10px;
  padding:14px 18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.email-bar-ic{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(200,16,46,.08);
  color:var(--red);
  font-size:22px;
  flex-shrink:0;
}
.email-bar-ic .ui-ico{width:22px;height:22px;}
.email-bar-txt{flex:1;min-width:140px;}
.email-bar-tt{font-size:13px;font-weight:600;color:var(--black);margin-bottom:2px;}
.email-bar-dd{font-size:11px;color:#514242;font-weight:500;}
.email-status{border-radius:8px;padding:10px 14px;font-size:12px;font-weight:600;text-align:center;margin-top:10px;}
.email-ok{background:var(--ok-d);border:1px solid rgba(29,138,94,.25);color:var(--ok);}
.email-er{background:var(--err-d);border:1px solid rgba(192,57,43,.22);color:var(--err);}

/* ─── PROPERTY SEARCH ───────────────────────────────────────────────────────── */
.ss{border-top:1px solid var(--border);padding-top:30px;margin-top:6px;}
.ss-head{text-align:left;margin-bottom:20px;}
.ss-eye{font-size:10px;letter-spacing:.25em;color:var(--red);margin-bottom:5px;text-transform:uppercase;font-weight:800;}
.ss-tt{font-family:var(--fb);font-size:24px;font-weight:850;color:var(--black);margin-bottom:4px;letter-spacing:-.025em;}
.ss-dd{font-size:12px;color:#514242;font-weight:500;}
.si-g{display:grid;grid-template-columns:1fr 90px 90px;gap:10px;margin-bottom:12px;align-items:end;}
.range-note{background:var(--red-dim);border:1px solid var(--red-b);border-radius:16px;padding:7px 12px;font-size:11px;color:#514242;margin-bottom:12px;font-weight:500;line-height:1.7;}
.range-note strong{color:var(--red);}

/* ─── LISTING CARDS ─────────────────────────────────────────────────────────── */
.listing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:14px;margin-top:16px;}
.lc{background:var(--surface);border:1.5px solid var(--border);border-radius:16px;overflow:hidden;transition:border-color .2s,box-shadow .2s,transform .15s;box-shadow:0 1px 4px rgba(0,0,0,.06);}
.lc:hover{border-color:var(--red-b);box-shadow:0 3px 10px rgba(200,16,46,.1);}
.lc-link{display:block;text-decoration:none;color:var(--text);cursor:pointer;-webkit-user-select:none;user-select:none;}
.lc-link:hover{transform:translateY(-2px);border-color:var(--red);box-shadow:0 4px 14px rgba(200,16,46,.18);}
.lc-link:active{transform:translateY(0);}
.lc-link:focus{outline:2px solid var(--red);outline-offset:2px;}
.lc-link:hover .lc-cta{color:#fff;background:var(--red);}
.lc-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:8px;
  padding:6px 10px;
  background:#F3EFEF;
  color:#6D5151;
  text-align:center;
  font-size:11px;
  font-weight:700;
  border-radius:5px;
  text-transform:uppercase;
  letter-spacing:.04em;
  transition:all .2s;
}
.lch{background:linear-gradient(135deg,var(--red-dim),var(--surface2));padding:14px 13px 11px;border-bottom:1px solid var(--border);}
.lcp{font-family:var(--fb);font-size:22px;font-weight:700;color:var(--red);letter-spacing:-.025em;}
.lca{font-size:11px;color:var(--dim);margin-top:3px;line-height:1.4;}
.lcb{padding:11px 13px;}
.lcs{display:flex;gap:10px;font-size:11px;color:#4E3A3A;margin-bottom:8px;flex-wrap:wrap;}
.lcs span{display:inline-flex;align-items:center;gap:5px;}
.lcs .ui-ico{width:14px;height:14px;color:#8A0D21;}
.lcf{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:5px;}
.lc-dom{font-size:9px;color:var(--dim);text-transform:uppercase;letter-spacing:.05em;}
.lc-type{background:var(--red-dim);color:var(--red);padding:3px 8px;border-radius:4px;font-size:9px;font-weight:700;text-transform:uppercase;}
.list-hd{display:flex;align-items:center;justify-content:space-between;margin:18px 0 4px;flex-wrap:wrap;gap:8px;}
.list-hd h4{font-family:var(--fb);font-size:19px;font-weight:850;color:var(--black);display:flex;align-items:center;gap:8px;letter-spacing:-.03em;}
.list-hd span{font-size:11px;color:var(--dim);}

/* ─── LOADING ───────────────────────────────────────────────────────────────── */
.ld{display:flex;align-items:center;justify-content:center;gap:8px;padding:20px;color:var(--dim);font-size:13px;}
@keyframes spin{to{transform:rotate(360deg)}}
.spin{width:16px;height:16px;border:2px solid rgba(200,16,46,.2);border-top-color:var(--red);border-radius:50%;animation:spin .8s linear infinite;flex-shrink:0;}

/* ─── CTA BLOCK ─────────────────────────────────────────────────────────────── */
.cta{
  background:var(--black);
  border-radius:22px;
  padding:26px;
  margin-top:24px;
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:16px;
  align-items:center;
  text-align:left;
}
.cta-av{width:64px;height:64px;border-radius:50%;border:3px solid var(--red);object-fit:cover;grid-row:1/4;margin:0;}
.cta-tt{font-family:var(--fb);font-size:20px;font-weight:850;color:#fff;margin-bottom:7px;letter-spacing:-.03em;}
.cta-p{color:rgba(255,255,255,.78);font-size:12px;line-height:1.7;margin-bottom:16px;font-weight:500;}
.cta .btn-g{
  background:#fff;
  color:#7F0A1C;
  border:1px solid rgba(255,255,255,.78);
  justify-self:start;
}
.cta .btn-g:hover{background:#F7EDEF;color:#7F0A1C;}

/* ─── DIVIDER ───────────────────────────────────────────────────────────────── */
.rdiv{height:1px;background:linear-gradient(90deg,transparent,var(--red),transparent);margin:22px 0;opacity:.25;}

/* ─── TOAST ─────────────────────────────────────────────────────────────────── */
.toast{
  position:fixed;
  left:50%;
  bottom:32px;
  transform:translateX(-50%) translateY(120%);
  background:var(--surface);
  border:2px solid var(--red);
  border-radius:14px;
  padding:18px 24px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
  z-index:200;
  text-align:center;
  max-width:90vw;
  width:380px;
  opacity:0;
  transition:transform .35s ease,opacity .25s ease;
  pointer-events:none;
}
.toast.show{transform:translateX(-50%) translateY(0);opacity:1;}
.toast-ic{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:6px;
}
.toast-tt{font-family:var(--fb);font-size:18px;font-weight:700;color:var(--red);margin-bottom:6px;letter-spacing:-.035em;}
.toast-addr{font-size:12px;color:var(--black);font-weight:600;margin-bottom:8px;line-height:1.4;background:var(--surface2);padding:6px 10px;border-radius:6px;display:inline-block;max-width:100%;word-break:break-word;}
.toast-msg{font-size:12px;color:var(--dim);line-height:1.5;margin-bottom:10px;}
.toast-bar{height:3px;background:var(--surface2);border-radius:2px;overflow:hidden;}
.toast-bar-fill{height:100%;width:0;background:var(--red);animation:toastBar 2.5s linear forwards;}
@keyframes toastBar{from{width:0}to{width:100%}}

/* ─── CHAT NUDGE + JOTFORM PULSE ────────────────────────────────────────────── */
@keyframes chatPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(200,16,46,.55),0 4px 14px rgba(0,0,0,.18)}
  70%{box-shadow:0 0 0 18px rgba(200,16,46,0),0 4px 14px rgba(0,0,0,.18)}
}
[class*="embedded-agent-button"],
.embedded-agent-button,
#JotformAgent-019438e2115c7445a4fb44e560c787d8bc5a button{
  animation: chatPulse 2.2s ease-out infinite !important;
}
.chat-nudge{
  position:fixed;
  bottom:96px;
  right:24px;
  background:var(--surface);
  color:#1A0808;
  border:2px solid #A30D25;
  border-radius:12px;
  padding:11px 30px 11px 14px;
  font-size:13px;
  font-weight:600;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
  z-index:9998;
  max-width:240px;
  line-height:1.4;
  animation:nudgeIn .5s cubic-bezier(.2,.9,.3,1.2) both;
}
.chat-nudge strong{color:#7F0A1C;}
.chat-nudge-arrow{
  position:absolute;
  bottom:-8px;
  right:24px;
  width:14px;
  height:14px;
  background:var(--surface);
  border-right:2px solid var(--red);
  border-bottom:2px solid var(--red);
  transform:rotate(45deg);
}
.chat-nudge-close{
  position:absolute;
  top:4px;
  right:6px;
  width:20px;
  height:20px;
  border:none;
  background:transparent;
  font-size:16px;
  line-height:1;
  color:var(--dim);
  cursor:pointer;
  padding:0;
  border-radius:50%;
}
.chat-nudge-close:hover{color:var(--red);background:var(--surface2);}
@keyframes nudgeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer.site-footer{
  background:linear-gradient(180deg,#FFFFFF 0%,#F7F4F4 100%);
  border-top:1px solid rgba(26,8,8,.10);
  padding:0;
  color:var(--text);
  padding-bottom:88px;
}
footer.site-footer, footer.site-footer *{font-weight:500;}
footer.site-footer .ft-name{font-weight:850;}
footer.site-footer .ft-link{font-weight:800;}
.ft-wrap{max-width:1180px;margin:0 auto;padding:34px 24px 28px;}
.ft-top{display:grid;grid-template-columns:minmax(260px,1.25fr) minmax(220px,.85fr);gap:26px;align-items:start;}
.ft-brand{display:flex;gap:14px;align-items:center;}
.ft-avatar{width:54px;height:54px;border-radius:16px;object-fit:cover;border:1px solid rgba(26,8,8,.12);box-shadow:0 8px 22px rgba(26,8,8,.10);flex-shrink:0;}
.ft-name{font-size:18px;line-height:1.2;font-weight:850;color:var(--black);letter-spacing:-.03em;}
.ft-sub{margin-top:3px;font-size:13px;line-height:1.45;color:var(--dim);font-weight:500;}
.ft-copy{margin-top:18px;max-width:620px;font-size:13px;line-height:1.75;color:#514242;}
.ft-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end;}
.ft-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
}
.ft-link.primary{background:var(--black);color:#fff;border:1px solid var(--black);box-shadow:0 8px 18px rgba(26,8,8,.16);}
.ft-link.secondary{background:#fff;color:var(--black);border:1px solid rgba(26,8,8,.14);}
.ft-link:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(26,8,8,.12);}
.ft-divider{height:1px;background:linear-gradient(90deg,rgba(200,16,46,.32),rgba(26,8,8,.08),transparent);margin:28px 0 18px;}
.ft-bottom{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;color:var(--dim);font-size:11px;line-height:1.7;}
.ft-disclaimer{max-width:780px;}
.ft-meta{white-space:nowrap;color:rgba(42,16,16,.64);}

/* ─── ICON SYSTEM ───────────────────────────────────────────────────────────── */
.ui-ico{display:inline-flex;align-items:center;justify-content:center;width:1.15em;height:1.15em;line-height:1;color:currentColor;vertical-align:-.18em;flex-shrink:0;}
.ui-ico svg{width:100%;height:100%;display:block;}
.btn .ui-ico{width:16px;height:16px;}

/* ─── UTILS ─────────────────────────────────────────────────────────────────── */
.hidden{display:none!important;}
.brand-word{display:inline-flex;align-items:baseline;gap:.03em;margin-right:.08em;white-space:nowrap;}
.brand-word span{color:#C8102E;font-weight:900;}
.brand-word b{color:#151010;font-weight:900;}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media(max-width:980px){
  .tool-shell{grid-template-columns:1fr;gap:22px;padding-top:24px;}
  .hero{position:static;}
  .hero-card{padding:28px;}
  .process-card{display:none;}
  .tool-note{text-align:left;max-width:none;}
  .tool-topper{flex-direction:column;gap:12px;}
  .trust-strip{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:820px){
  .hd{
    grid-template-columns:auto 1fr;
    row-gap:10px;
    column-gap:14px;
    padding:12px 18px;
  }
  .hd-logo img{height:28px;max-width:150px;}
  .hd-right{
    grid-column:1 / -1;
    justify-content:space-between;
    min-width:0;
    width:100%;
    padding-top:10px;
    border-top:1px solid rgba(26,8,8,.08);
  }
  .hd-phone{flex:1;max-width:260px;}
  .hd-app{font-size:clamp(1.15rem,6vw,1.45rem);}
  .hd-name{font-size:12.5px;}
}
@media(max-width:760px){
  .ft-wrap{padding:28px 18px 24px;}
  .ft-top{grid-template-columns:1fr;gap:20px;}
  .ft-actions{justify-content:flex-start;}
  .ft-link{width:100%;}
  .ft-bottom{flex-direction:column;}
  .ft-meta{white-space:normal;}
}
@media(max-width:640px){
  .hd{
    position:relative;
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px 12px;
    align-items:center;
    padding:12px 14px;
    min-height:auto;
  }
  .hd-logo{grid-column:1;grid-row:1;width:42px;height:42px;border-radius:12px;}
  .hd-logo img{height:25px;max-width:138px;}
  .hd-av{grid-column:2;grid-row:1;width:40px;height:40px;}
  .hd-mid{grid-column:1 / -1;grid-row:2;order:initial;width:100%;padding:9px 0 0;border-left:0;border-top:1px solid rgba(26,8,8,.08);}
  .hd-name{font-size:14px;white-space:normal;}
  .hd-right{grid-column:1 / -1;grid-row:3;display:grid;grid-template-columns:1fr;padding-top:0;border-top:0;width:100%;}
  .hd-phone{width:100%;max-width:none;min-height:44px;font-size:13px;}
  .hd-app{font-size:clamp(1.1rem,7vw,1.35rem);}
  .hd-by{flex-wrap:wrap;row-gap:0;line-height:1.05;}
  .tool-card{padding:18px;border-radius:24px;}
  .tool-card::before{height:4px;}
  .hero-card,.tool-card{border-radius:22px;}
  .hero-h1{font-size:clamp(2.05rem,11vw,3rem);line-height:1.02;}
  .hero-p{font-size:14px;}
  .hero-actions .btn{width:100%;}
  .trust-strip{grid-template-columns:1fr;}
  .s-ind{justify-content:center;gap:6px;padding:10px;margin-bottom:24px;border-radius:18px;overflow-x:visible;}
  .si-dot{width:32px;height:32px;font-size:11px;}
  .si-line{width:min(9vw,34px);height:2px;}
  .st{font-size:clamp(24px,7vw,30px);margin-bottom:8px;}
  .sd2{font-size:13.5px;margin-bottom:22px;}
  .card{padding:18px;border-radius:20px;}
  .opt{grid-template-columns:38px 1fr;min-height:auto;padding:16px 48px 16px 16px;border-radius:18px;}
  .opt::before{width:38px;height:38px;border-radius:12px;}
  .opt::after{top:16px;right:14px;width:22px;height:22px;}
  .opt-ic{width:44px;height:44px;font-size:22px;}
  .opt-tt{font-size:16px;}
  .opt-dd{font-size:12px;max-width:100%;}
  input[type=number],input[type=text],input[type=email],input[type=tel],select{min-height:50px;font-size:16px;}
  .btn-row{grid-template-columns:1fr;gap:10px;}
  .btn{min-height:52px;width:100%;}
  .bv{padding-bottom:16px;}
  .bval{font-size:44px;}
  .email-bar{flex-direction:column;text-align:center;}
  .email-bar-ic{margin-bottom:2px;}
  .email-bar .btn{width:100%;}
  .cta{display:block;text-align:center;}
  .cta-av{margin-bottom:12px;}
  .cta .btn{width:100%;}
  .chat-nudge{bottom:92px;right:12px;max-width:188px;}
  .listing-grid{grid-template-columns:1fr;}
  .btn-row,.mg,.si-g,.cf-g{grid-template-columns:1fr;}
}
@media(max-width:520px){
  .chat-nudge{right:16px;bottom:86px;max-width:200px;font-size:12px;}
}
@media(max-width:430px){
  .hd-logo{width:42px;height:42px;border-radius:12px;}
  .hd-phone{padding:10px 12px;font-size:12px;}
  .hd-av{width:40px;height:40px;}
  .brand-word{display:inline;white-space:normal;}
  .tool-card{padding:16px;}
  .s-ind{padding:9px 8px;}
  .si-dot{width:30px;height:30px;}
  .si-line{width:7vw;}
  .card{padding:16px;}
  .bval{font-size:40px;}
  .opt{grid-template-columns:34px 1fr;padding:15px 42px 15px 14px;}
  .opt::before{width:34px;height:34px;}
  .opt-ic{font-size:20px;width:34px;height:34px;}
  .hero-card,.tool-card{padding:18px;}
  .hero-eye{letter-spacing:.08em;}
  .hero-h1{font-size:clamp(2rem,12vw,2.4rem);}
  .email-bar{align-items:stretch;}
  .email-bar .btn{width:100%;}
  #s2 .card > div[style*="display:flex"]{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;align-items:stretch!important;margin-top:18px!important;}
  #s2 .card > div[style*="display:flex"] > span{white-space:normal!important;font-weight:800!important;color:#765E5E!important;}
}
@media(max-width:380px){
  .hd-logo img{max-width:124px;height:24px;}
  .hd-av{width:38px;height:38px;}
  .hd-name{font-size:13px;}
}
