/* ── Talk to Us page ── */

.ttu-hero { padding: 72px 0 96px; }

.ttu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Left copy */
.ttu-copy h1 {
  font: 700 clamp(40px, 5vw, 60px)/1.05 'Inter', sans-serif;
  letter-spacing: -0.04em;
  margin: 14px 0 20px;
}
.ttu-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 480px;
}

.ttu-expect {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ttu-expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ttu-expect-ico {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.ttu-expect-item strong {
  display: block;
  font: 600 15px/1 'Inter', sans-serif;
  color: var(--ink);
  margin-bottom: 5px;
}
.ttu-expect-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

/* Form card */
.ttu-form-wrap { position: sticky; top: 90px; }
.ttu-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 40px rgba(10,37,64,.08);
}

.ttu-form-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ttu-form-head span { font-size: 18px; }
.ttu-form-head strong { flex: 1; color: var(--ink); }
.ttu-switch { color: var(--accent); font-weight: 500; }
.ttu-switch:hover { text-decoration: underline; }

/* Errors */
.ttu-errors {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.ttu-errors p { font-size: 14px; color: #dc2626; margin: 0 0 4px; line-height: 1.5; }
.ttu-errors p:last-child { margin-bottom: 0; }

/* Form layout */
.ttu-form { display: flex; flex-direction: column; gap: 16px; }
.ttu-row { display: flex; gap: 14px; }
.ttu-row--2 > * { flex: 1; min-width: 0; }
.ttu-field { display: flex; flex-direction: column; gap: 6px; }

.ttu-field label {
  font: 500 13px/1 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.ttu-field label span { color: var(--accent); }

.ttu-field input,
.ttu-field select,
.ttu-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: 400 15px/1.4 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  width: 100%;
  resize: vertical;
}
.ttu-field input { height: 44px; }
.ttu-field select { height: 44px; }
.ttu-field input:focus,
.ttu-field select:focus,
.ttu-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,91,255,.12);
}
.ttu-field input::placeholder,
.ttu-field textarea::placeholder { color: var(--muted); }

.ttu-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  border: none;
}

/* Responsive */
@media (max-width: 960px) {
  .ttu-grid { grid-template-columns: 1fr; gap: 40px; }
  .ttu-form-wrap { position: static; }
  .ttu-row { flex-direction: column; }
}
@media (max-width: 540px) {
  .ttu-form-card { padding: 24px 20px 20px; }
  .ttu-hero { padding: 48px 0 64px; }
}
