
.escf-card-wrap{
  --escf-brand:#044c26;
  margin:18px 0 8px;
}
.escf-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.93));
  border:1px solid rgba(4,76,38,.12);
  box-shadow:0 20px 60px rgba(4,25,16,.12);
  backdrop-filter:blur(10px);
}
.escf-card-glow{
  position:absolute;
  inset:auto -80px -80px auto;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(4,76,38,.18), rgba(4,76,38,0));
  pointer-events:none;
}
.escf-head{margin-bottom:20px}
.escf-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(4,76,38,.08);
  color:var(--escf-brand);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.escf-head h3{
  margin:14px 0 8px;
  font-size:clamp(28px,4vw,44px);
  line-height:1;
  font-weight:800;
  color:#08110c;
}
.escf-head p{
  margin:0;
  font-size:16px;
  color:#4a5b51;
}
.escf-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.escf-field{
  display:block;
  margin:0 0 16px;
}
.escf-field span{
  display:block;
  margin:0 0 8px;
  font-size:14px;
  font-weight:700;
  color:#0f1712;
}
.escf-field input,
.escf-field textarea,
.escf-field select{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(8,17,12,.10);
  background:#fff;
  padding:15px 16px;
  font-size:16px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  appearance:none;
}
.escf-field input:focus,
.escf-field textarea:focus,
.escf-field select:focus{
  outline:none;
  border-color:rgba(4,76,38,.38);
  box-shadow:0 0 0 4px rgba(4,76,38,.10);
  transform:translateY(-1px);
}
.escf-field textarea{min-height:140px;resize:vertical}
.escf-button{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:240px;
  min-height:58px;
  border:0;
  border-radius:999px;
  color:#fff;
  font-size:18px;
  font-weight:800;
  padding:0 28px;
  cursor:pointer;
  background:linear-gradient(135deg, var(--escf-brand), #0a6d39, var(--escf-brand));
  background-size:200% 200%;
  box-shadow:0 12px 28px rgba(4,76,38,.25);
  transition:transform .2s ease, box-shadow .2s ease;
  animation:escfShift 4s ease infinite;
}
.escf-button:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(4,76,38,.32)}
.escf-button:active{transform:translateY(0)}
.escf-button::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events:none;
}
.escf-button span{position:relative;z-index:1}
.escf-alert{margin:0 0 18px;padding:14px 16px;border-radius:16px;font-weight:700}
.escf-alert.success{background:rgba(4,76,38,.08);color:#0f5d32}
.escf-alert.error{background:rgba(200,30,30,.08);color:#9d1c1c}
.escf-hp{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
@keyframes escfShift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@media (max-width: 767px){
  .escf-card{padding:20px;border-radius:22px}
  .escf-grid{grid-template-columns:1fr}
  .escf-button{width:100%}
}