.jcf{
  --jcf-text:#334155;
  --jcf-heading:#1F3B60;
  --jcf-border:#d8e4ee;
  --jcf-button:#1F3B60;
  --jcf-button-hover:#18314f;
  --jcf-soft:#f7f9fb;
  --jcf-success:#276749;
  --jcf-success-bg:#f0fff4;
  --jcf-error:#9b2c2c;
  --jcf-error-bg:#fff5f5;
  max-width:920px;
  color:var(--jcf-text);
  font-family:Inter,sans-serif;
  font-size:16px;
  line-height:1.6;
}
.jcf *{box-sizing:border-box}
.jcf__form{
  border:1px solid var(--jcf-border);
  border-radius:18px;
  background:#fff;
  padding:24px;
  box-shadow:0 8px 24px rgba(31,59,96,.05);
}
.jcf__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.jcf__field{
  display:block;
}
.jcf__field--full{
  grid-column:1/-1;
}
.jcf__field>span{
  display:block;
  margin-bottom:7px;
  color:var(--jcf-heading);
  font-weight:700;
  font-size:16px;
}
.jcf em{
  color:#b42318;
  font-style:normal;
}
.jcf input[type="text"],
.jcf input[type="email"],
.jcf input[type="url"],
.jcf input[type="tel"],
.jcf textarea{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:10px;
  background:#fff;
  color:var(--jcf-text);
  font-family:Inter,sans-serif;
  font-size:16px;
  line-height:1.5;
  padding:11px 12px;
  box-shadow:none;
}
.jcf input:focus,
.jcf textarea:focus{
  outline:0;
  border-color:#6b8eb7;
  box-shadow:0 0 0 3px rgba(31,59,96,.11);
}
.jcf textarea{
  resize:vertical;
  min-height:150px;
}
.jcf__privacy{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:20px;
}
.jcf__privacy input{
  margin-top:5px;
}
.jcf__privacy a{
  color:var(--jcf-heading);
  text-decoration:underline;
}
.jcf__turnstile{
  margin-top:18px;
}
.jcf .jcf__submit{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin-top:20px;
  border:1px solid var(--jcf-button)!important;
  border-radius:10px!important;
  background:var(--jcf-button)!important;
  color:#fff!important;
  font-family:Inter,sans-serif!important;
  font-size:16px!important;
  line-height:1.4!important;
  font-weight:600!important;
  padding:11px 20px!important;
  cursor:pointer;
  box-shadow:none!important;
  text-decoration:none!important;
}
.jcf .jcf__submit:hover,
.jcf .jcf__submit:focus{
  background:var(--jcf-button-hover)!important;
  border-color:var(--jcf-button-hover)!important;
  color:#fff!important;
}
.jcf__required{
  margin:10px 0 0;
  color:#64748b;
  font-size:13px;
}
.jcf__notice{
  margin:0 0 18px;
  padding:13px 15px;
  border-radius:10px;
  border:1px solid;
}
.jcf__notice--success{
  color:var(--jcf-success);
  background:var(--jcf-success-bg);
  border-color:#9ae6b4;
}
.jcf__notice--error{
  color:var(--jcf-error);
  background:var(--jcf-error-bg);
  border-color:#feb2b2;
}
.jcf__honeypot{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(1px,1px,1px,1px)!important;
  clip-path:inset(50%)!important;
  white-space:nowrap!important;
}
@media(max-width:700px){
  .jcf__form{padding:18px}
  .jcf__grid{grid-template-columns:1fr}
  .jcf__field--full{grid-column:auto}
  .jcf .jcf__submit{width:100%}
}

.jcf__selection{
  margin:0 0 20px;
  border:1px solid #b8cde0;
  border-radius:16px;
  background:#f8fbfe;
  padding:20px 22px;
}
.jcf__selection-head{
  margin-bottom:12px;
}
.jcf__selection-kicker{
  display:block;
  margin-bottom:3px;
  color:#64748b;
  font-size:12px;
  line-height:1.4;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.jcf__selection h3{
  margin:0!important;
  color:var(--jcf-heading)!important;
  font-family:Inter,sans-serif!important;
  font-size:20px!important;
  line-height:1.3!important;
  font-weight:700!important;
}
.jcf__selection-list{
  margin:0;
}
.jcf__selection-list>div{
  display:grid;
  grid-template-columns:minmax(140px,.8fr) minmax(0,1.6fr);
  gap:16px;
  padding:7px 0;
  border-bottom:1px solid #e5edf4;
}
.jcf__selection-list>div:last-child{
  border-bottom:0;
}
.jcf__selection dt{
  color:#64748b;
  font-weight:500;
}
.jcf__selection dd{
  margin:0;
  color:var(--jcf-text);
  font-weight:700;
}
.jcf__selection-note{
  margin:12px 0 0;
  padding-top:12px;
  border-top:1px solid #e5edf4;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
}
@media(max-width:700px){
  .jcf__selection-list>div{
    grid-template-columns:1fr;
    gap:2px;
  }
}
