/* ==========================================================================
   Contact CTA v2 — Modern dark split-layout contact form
   ========================================================================== */

.contact2 {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #0a0a0b;
}

/* ── Grid ── */
.contact2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* ── Left: text side ── */
.contact2__info {
  position: sticky;
  top: 120px;
}

.contact2__eyebrow {
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent, #2f70ff);
  margin: 0 0 14px;
}

.contact2__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.contact2__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  margin: 0 0 36px;
  max-width: 420px;
}

/* Trust signals */
.contact2__signals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact2__signal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact2__signal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(47,112,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact2__signal-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent, #2f70ff);
}

.contact2__signal-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* ── Right: form side ── */
.contact2__form-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
}

/* ── Form ── */
.contact2__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact2__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact2__field {
  display: flex;
  flex-direction: column;
}

.contact2__input,
.contact2__select,
.contact2__textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.contact2__input::placeholder,
.contact2__select::placeholder,
.contact2__textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.contact2__input:focus,
.contact2__select:focus,
.contact2__textarea:focus {
  border-color: var(--color-accent, #2f70ff);
  background: rgba(47,112,255,.04);
  box-shadow: 0 0 0 3px rgba(47,112,255,.1);
}

.contact2__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact2__select option {
  background: #1a1a1c;
  color: #fff;
}

.contact2__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox */
.contact2__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact2__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.contact2__checkbox input[type="checkbox"]:checked {
  background: var(--color-accent, #2f70ff);
  border-color: var(--color-accent, #2f70ff);
}

.contact2__checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact2__checkbox-text {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* Captcha */
.contact2__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact2__captcha-q {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

.contact2__captcha-input {
  width: 80px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  text-align: center;
  transition: all 0.3s ease;
}

.contact2__captcha-input:focus {
  border-color: var(--color-accent, #2f70ff);
  box-shadow: 0 0 0 3px rgba(47,112,255,.1);
}

/* Submit */
.contact2__submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: var(--color-accent, #2f70ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.contact2__submit:hover {
  background: #1a5cee;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47,112,255,.3);
}

.contact2__submit:active {
  transform: translateY(0);
}

/* Footer notes */
.contact2__notes {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.contact2__notes li {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact2__notes li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(47,112,255,.5);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .contact2__grid {
    grid-template-columns: 1fr;
  }

  .contact2__info {
    position: static;
    text-align: center;
  }

  .contact2__subtitle {
    max-width: none;
  }

  .contact2__signals {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .contact2__row {
    grid-template-columns: 1fr;
  }

  .contact2__form-wrap {
    padding: 24px;
  }

  .contact2__notes {
    flex-direction: column;
    gap: 8px;
  }
}
