
@font-face{
	font-family:'LamaSans';
	src:url('../fonts/LamaSans-Black.ttf') format('truetype');
	font-weight:900;
	font-style:normal;
	font-display:swap;
}
.ndsbfl-shell,
.ndsbfl-shell *{
	font-family:'LamaSans', Tahoma, Arial, sans-serif;
}
.ndsbfl-shell{
	--ndsbfl-shadow:0 24px 60px rgba(15,23,42,.08);
	--ndsbfl-radius:24px;
	--ndsbfl-muted:#64748b;
	max-width:960px;
	margin:0 auto;
	padding:24px;
	box-sizing:border-box;
}
.ndsbfl-card{
	background:var(--ndsbfl-surface);
	border:1px solid var(--ndsbfl-border);
	border-radius:var(--ndsbfl-radius);
	box-shadow:var(--ndsbfl-shadow);
	padding:32px;
}
.ndsbfl-header{
	margin-bottom:28px;
	text-align:center;
}
.ndsbfl-header h2{
	margin:0 0 10px;
	font-size:42px;
	line-height:1.1;
	color:var(--ndsbfl-accent);
	font-weight:900;
}
.ndsbfl-header p{
	margin:0;
	font-size:15px;
	color:var(--ndsbfl-muted);
}
.ndsbfl-alert{
	padding:14px 16px;
	border-radius:16px;
	margin-bottom:22px;
	font-size:14px;
	font-weight:900;
}
.ndsbfl-alert--success{
	background:#ecfdf5;
	color:#166534;
	border:1px solid #bbf7d0;
}
.ndsbfl-alert--error{
	background:#fef2f2;
	color:#991b1b;
	border:1px solid #fecaca;
}
.ndsbfl-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:18px;
}
.ndsbfl-field--full{
	grid-column:1 / -1;
}
.ndsbfl-field label{
	display:block;
	margin:0 0 8px;
	color:var(--ndsbfl-accent);
	font-weight:900;
	font-size:15px;
}
.ndsbfl-required{
	color:#dc2626;
	margin-right:4px;
}
.ndsbfl-control{
	position:relative;
}
.ndsbfl-control input,
.ndsbfl-control textarea{
	width:100%;
	box-sizing:border-box;
	border:1px solid var(--ndsbfl-border);
	background:#fff;
	border-radius:16px;
	padding:16px 52px 16px 16px;
	font-size:15px;
	color:#0f172a;
	outline:none;
	transition:border-color .2s ease, box-shadow .2s ease;
}
.ndsbfl-control textarea{
	min-height:120px;
	resize:vertical;
}
.ndsbfl-control input::placeholder,
.ndsbfl-control textarea::placeholder{
	color:#94a3b8;
}
.ndsbfl-control input:focus,
.ndsbfl-control textarea:focus{
	border-color:var(--ndsbfl-primary);
	box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.ndsbfl-icon{
	position:absolute;
	top:50%;
	right:16px;
	width:20px;
	height:20px;
	transform:translateY(-50%);
	color:#94a3b8;
	pointer-events:none;
}
.ndsbfl-control--textarea .ndsbfl-icon{
	top:18px;
	transform:none;
}
.ndsbfl-icon svg{
	display:block;
	width:20px;
	height:20px;
}
.ndsbfl-actions{
	margin-top:24px;
}
.ndsbfl-submit{
	width:100%;
	border:0;
	border-radius:18px;
	padding:17px 20px;
	background:linear-gradient(135deg,var(--ndsbfl-primary),#38bdf8);
	color:#fff;
	font-size:16px;
	font-weight:900;
	cursor:pointer;
	transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
	box-shadow:0 16px 30px rgba(37,99,235,.22);
}
.ndsbfl-submit:hover{
	transform:translateY(-1px);
}
.ndsbfl-submit:active{
	transform:translateY(0);
}
@media (max-width: 767px){
	.ndsbfl-shell{
		padding:14px;
	}
	.ndsbfl-card{
		padding:22px 16px;
		border-radius:20px;
	}
	.ndsbfl-header h2{
		font-size:28px;
	}
	.ndsbfl-grid{
		grid-template-columns:1fr;
		gap:16px;
	}
}


/* v2.1.3 scoped visual refinement - form only */
.ndsbfl-shell {
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(29,78,216,.10), transparent 34%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  border-radius: 28px;
}

.ndsbfl-shell .ndsbfl-card {
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
  border: 1px solid color-mix(in srgb, var(--ndsbfl-border) 80%, #ffffff);
}

.ndsbfl-shell .ndsbfl-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.ndsbfl-shell .ndsbfl-header p {
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.9;
}

.ndsbfl-shell .ndsbfl-control input,
.ndsbfl-shell .ndsbfl-control textarea {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ndsbfl-shell .ndsbfl-control:focus-within input,
.ndsbfl-shell .ndsbfl-control:focus-within textarea {
  border-color: var(--ndsbfl-primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}

.ndsbfl-shell .ndsbfl-submit {
  min-height: 58px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(29,78,216,.22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ndsbfl-shell .ndsbfl-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(29,78,216,.28);
  filter: saturate(1.05);
}

.ndsbfl-shell .ndsbfl-button-note {
  margin-top: 12px;
  text-align: center;
  color: #52647e;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

@media (max-width: 720px) {
  .ndsbfl-shell {
    padding: 14px;
    border-radius: 22px;
  }
  .ndsbfl-shell .ndsbfl-button-note {
    font-size: 13px;
  }
}
