.ct-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.ct-form-wrap {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px;
}
.ct-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}
.ct-form-sub {
  font-size: 15px;
  color: #64748B;
  margin: 0 0 32px;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ct-honeypot { display: none; }
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-field label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  background: white;
  color: #0F172A;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: #14B8A6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-submit {
  align-self: flex-start;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
}
.ct-submit:disabled { opacity: 0.6; cursor: wait; }
.ct-form-note {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}
.ct-result {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.ct-result-success {
  display: block;
  background: rgba(20, 184, 166, 0.1);
  color: #0D9488;
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.ct-result-error {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-channel {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
}
.ct-channel h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ct-channel p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 8px;
}
.ct-channel a {
  font-size: 15px;
  color: #14B8A6;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.ct-channel a:hover { text-decoration: underline; }
.ct-meta {
  font-size: 12px !important;
  color: #94A3B8 !important;
  margin-top: 6px !important;
}
.ct-channel-cta {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-color: #1E293B;
  color: white;
}
.ct-channel-cta h3 { color: white; }
.ct-channel-cta p { color: #94A3B8; }
.ct-channel-cta .lh-btn {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .ct-layout { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
}
