.ct-hero{ padding: 52px 0 18px; }

.ct-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.ct-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}
.ct-card{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.ct-card__k{ font-weight: 950; }
.ct-card__v{ margin-top: 6px; color: rgba(240,244,255,0.62); font-weight: 700; font-size: 13.5px; }

.ct-form{ margin-top: 10px; display:grid; gap: 10px; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.lbl{
  display:block;
  margin-bottom: 6px;
  color: rgba(240,244,255,0.62);
  font-weight: 800;
  font-size: 12px;
}

/* Inputs */
.in, .ta{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(240,244,255,0.88);
  padding: 10px 12px;
  font-weight: 650;
  line-height: 1.55;
}
.ta{ resize: vertical; }

/* ✅ Selects (Budget/Timeline/Preferred contact) — forced dark UI */
.sel{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,12,18,0.72) !important;  /* stops white backgrounds */
  color: rgba(240,244,255,0.92) !important;    /* stops white-on-white */
  padding: 10px 42px 10px 12px;                /* room for arrow */
  font-weight: 850;
  line-height: 1.55;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(240,244,255,0.75) 50%),
    linear-gradient(135deg, rgba(240,244,255,0.75) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.10));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%,
    calc(100% - 42px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 22px;
  background-repeat: no-repeat;
}

/* Dropdown options (browser-dependent, but helps in many cases) */
.sel option{
  background: #0b1020;
  color: rgba(240,244,255,0.92);
}

/* Focus states */
.in:focus, .ta:focus, .sel:focus{
  outline: none;
  border-color: rgba(140,120,255,0.45);
  box-shadow: 0 0 0 4px rgba(140,120,255,0.14);
}

.checks{ display:flex; flex-wrap: wrap; gap: 10px; }
.chk{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,12,18,0.35);
  color: rgba(240,244,255,0.82);
  font-weight: 800;
  font-size: 12px;
}
.chk input{ accent-color: auto; }

.smallhint{
  color: rgba(240,244,255,0.58);
  font-weight: 650;
  line-height: 1.55;
  font-size: 12.5px;
  margin-top: 6px;
}

.consent{ display:grid; gap: 6px; }

.status{
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.35);
  color: rgba(240,244,255,0.78);
  font-weight: 750;
  line-height: 1.55;
  min-height: 44px;
  display:flex;
  align-items:center;
}
.status.ok{
  border-color: rgba(0,255,170,0.20);
  background: rgba(0,255,170,0.06);
  color: rgba(0,255,170,0.92);
}
.status.bad{
  border-color: rgba(255,90,90,0.25);
  background: rgba(255,90,90,0.06);
  color: rgba(255,190,190,0.95);
}

/* Honeypot hidden */
.hp{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

@media (max-width: 980px){
  .ct-grid{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
}
