.ndpcf-section{
  --ndpcf-accent:#FBBF24;
  --ndpcf-overlay:0.82;
  --ndpcf-padding:120px;
  --ndpcf-maxw:1120px;
  --ndpcf-bg:none;
  position:relative;
  isolation:isolate;
  background-image:var(--ndpcf-bg);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:var(--ndpcf-padding) 20px;
  color:#fff;
  font-family:"Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow:hidden;
}

.ndpcf-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,calc(var(--ndpcf-overlay) + 0.08)) 0%, rgba(0,0,0,var(--ndpcf-overlay)) 45%, rgba(0,0,0,calc(var(--ndpcf-overlay) - 0.10)) 100%);
  backdrop-filter:blur(2px);
  z-index:-1;
}

.ndpcf-shell{
  position:relative;
  max-width:var(--ndpcf-maxw);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px, 1fr) minmax(340px, 520px);
  gap:36px;
  align-items:center;
}

.ndpcf-copy{
  max-width:650px;
}

.ndpcf-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--ndpcf-accent);
  font-size:1.02rem;
  font-weight:500;
  margin-bottom:10px;
}

.ndpcf-kicker::before{
  content:"";
  width:36px;
  height:1px;
  background:currentColor;
  opacity:.7;
}

.ndpcf-title{
  font-size:clamp(2.5rem, 5vw, 4.2rem);
  line-height:.98;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.02em;
  margin:0 0 18px;
}

.ndpcf-title span{
  color:var(--ndpcf-accent);
}

.ndpcf-subtitle{
  color:rgba(255,255,255,.88);
  font-size:1.1rem;
  line-height:1.75;
  max-width:560px;
}

.ndpcf-subtitle p{
  margin:0 0 14px;
}

.ndpcf-points{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.ndpcf-point-card{
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.ndpcf-point-card strong{
  display:block;
  font-size:.96rem;
  color:#fff;
  margin-bottom:6px;
}

.ndpcf-point-card span{
  display:block;
  font-size:.92rem;
  line-height:1.55;
  color:rgba(255,255,255,.72);
}

.ndpcf-form-card{
  position:relative;
  background:rgba(17,17,17,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:34px 34px 30px;
  box-shadow:0 24px 60px rgba(0,0,0,.34), 0 0 0 1px rgba(251,191,36,.05) inset;
  backdrop-filter:blur(10px);
}

.ndpcf-form-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background:linear-gradient(90deg, var(--ndpcf-accent), rgba(255,255,255,.6), transparent);
  border-radius:24px 24px 0 0;
}

.ndpcf-alert{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:14px;
  line-height:1.5;
  font-size:.95rem;
}

.ndpcf-alert-success{
  background:rgba(34,197,94,.13);
  border:1px solid rgba(34,197,94,.35);
  color:#dcfce7;
}

.ndpcf-alert-error{
  background:rgba(239,68,68,.12);
  border:1px solid rgba(239,68,68,.35);
  color:#fee2e2;
}

.ndpcf-form label{
  display:block;
  margin-bottom:8px;
  color:var(--ndpcf-accent);
  font-size:.95rem;
  font-weight:600;
}

.ndpcf-form input,
.ndpcf-form textarea{
  width:100%;
  box-sizing:border-box;
  background:transparent;
  border:none;
  border-bottom:2px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:1rem;
  padding:12px 0;
  margin-bottom:22px;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  border-radius:0;
}

.ndpcf-form input::placeholder,
.ndpcf-form textarea::placeholder{
  color:rgba(255,255,255,.48);
}

.ndpcf-form input:focus,
.ndpcf-form textarea:focus{
  outline:none;
  border-color:var(--ndpcf-accent);
  box-shadow:0 8px 20px rgba(251,191,36,.08);
}

.ndpcf-form textarea{
  resize:vertical;
  min-height:130px;
}

.ndpcf-button{
  appearance:none;
  border:none;
  border-radius:999px;
  background:var(--ndpcf-accent);
  color:#0b0b0b;
  font-size:1rem;
  font-weight:800;
  line-height:1;
  padding:16px 32px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 15px 30px rgba(251,191,36,.18);
}

.ndpcf-button:hover,
.ndpcf-button:focus{
  background:#fff;
  color:#0b0b0b;
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(251,191,36,.24);
}

.ndpcf-button:focus{
  outline:2px solid rgba(255,255,255,.4);
  outline-offset:2px;
}

.ndpcf-hp-wrap{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

@media (max-width: 900px){
  .ndpcf-shell{
    grid-template-columns:1fr;
    gap:26px;
  }

  .ndpcf-copy{
    max-width:none;
  }
}

@media (max-width: 768px){
  .ndpcf-section{
    padding:86px 16px;
  }

  .ndpcf-form-card{
    padding:26px 20px 22px;
    border-radius:20px;
  }

  .ndpcf-points{
    grid-template-columns:1fr;
  }

  .ndpcf-button{
    width:100%;
    justify-content:center;
  }
}
