/* Business Clarity V2 — sections/forms only. Keeps global theme intact. */

.bcv2-section{
  max-width:1720px;
  margin:52px auto;
  padding:0 clamp(22px,5vw,72px);
}

.bcv2-panel{
  border:1px solid rgba(255,140,80,.22);
  background:linear-gradient(180deg,rgba(24,19,33,.96),rgba(18,14,25,.96));
  border-radius:28px;
  box-shadow:0 18px 52px rgba(0,0,0,.32);
  padding:clamp(24px,3vw,44px);
}

.bcv2-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,178,62,.28);
  background:rgba(255,178,62,.08);
  color:#ffb23e !important;
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.bcv2-heading{
  color:#fff4ea !important;
  font-size:clamp(32px,4vw,58px);
  line-height:.98;
  letter-spacing:-.055em;
  margin:0 0 16px;
}

.bcv2-sub{
  color:#bfaea2 !important;
  max-width:880px;
  font-size:clamp(16px,1.4vw,20px);
  line-height:1.65;
  margin:0 0 26px;
}

.bcv2-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.bcv2-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.bcv2-card{
  border:1px solid rgba(255,140,80,.20);
  background:linear-gradient(180deg,#181321,#120e19);
  border-radius:22px;
  padding:22px;
  min-height:170px;
}

.bcv2-card strong{
  display:block;
  color:#fff4ea !important;
  font-size:18px;
  margin-bottom:8px;
}

.bcv2-card p{
  color:#bfaea2 !important;
  line-height:1.55;
  margin:0;
}

.bcv2-number{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(120deg,#ffb23e,#ff7a45 55%,#ff5e6c);
  color:#1a1110 !important;
  font-weight:950;
  margin-bottom:14px;
}

.bcv2-list{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.bcv2-list li{
  color:#e9ddd3 !important;
  line-height:1.5;
}

.bcv2-list li::before{
  content:"✓";
  color:#67d486;
  font-weight:900;
  margin-right:8px;
}

.bcv2-note{
  border:1px solid rgba(255,178,62,.26);
  background:rgba(255,178,62,.08);
  color:#ffdfb3 !important;
  border-radius:18px;
  padding:16px 18px;
  line-height:1.55;
  margin-top:18px;
}

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

.bcv2-field{
  display:grid;
  gap:8px;
}

.bcv2-field label{
  color:#fff4ea !important;
  font-weight:800;
  font-size:14px;
}

.bcv2-field input,
.bcv2-field select,
.bcv2-field textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,140,80,.24);
  background:#181321;
  color:#fff4ea !important;
  padding:14px 16px;
  font:inherit;
}

.bcv2-field textarea{
  min-height:118px;
  resize:vertical;
}

.bcv2-full{
  grid-column:1/-1;
}

.bcv2-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:20px;
}

.bcv2-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 20px;
  border-radius:14px;
  background:linear-gradient(120deg,#ffb23e,#ff7a45 55%,#ff5e6c);
  color:#1a1110 !important;
  font-weight:950;
  text-decoration:none;
  border:0;
}

.bcv2-small{
  color:#bfaea2 !important;
  font-size:14px;
  line-height:1.5;
}

@media(max-width:1000px){
  .bcv2-grid,
  .bcv2-grid-3{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:680px){
  .bcv2-grid,
  .bcv2-grid-3,
  .bcv2-form{
    grid-template-columns:1fr;
  }

  .bcv2-heading{
    font-size:38px;
  }
}
