/* Contact page — page-local styles (external per CSP style-src 'self').
   Uses the site's dark premium palette; falls back to literal values only
   where a global token isn't guaranteed on this standalone page. */

.ct-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 20px 80px;
  position: relative;
  z-index: 1;
}

.ct-head { text-align: center; margin-bottom: clamp(24px, 4vw, 44px); }
.ct-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: #8b5cf6; margin: 0 0 10px;
}
.ct-title {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.05;
  margin: 0 0 12px; color: #eef2fa; letter-spacing: -0.02em;
}
.ct-sub {
  font-size: clamp(15px, 2vw, 18px); color: #9aa6bd; max-width: 600px;
  margin: 0 auto; line-height: 1.5;
}

/* Single, centered form card. No public email addresses are shown anywhere on
   the page (anti-scrape / anti-spam): every route goes through the form, which
   the backend maps to the right WolfDesk inbox. */
.ct-form-card { max-width: 640px; margin: 0 auto; }

.ct-card {
  background: linear-gradient(180deg, rgba(18, 24, 40, 0.82), rgba(12, 16, 28, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.ct-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .ct-row { grid-template-columns: 1fr; } }

.ct-field label {
  font-size: 12.5px; font-weight: 700; color: #c4cde0; margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.ct-req { color: #8b5cf6; }

.ct-field input,
.ct-field textarea,
.ct-field select {
  width: 100%; box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px; padding: 11px 13px;
  color: #eef2fa; font-size: 14.5px; font-family: inherit;
  outline: none; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.ct-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #5d6a82; }
.ct-field input:focus,
.ct-field textarea:focus,
.ct-field select:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.ct-select-wrap { position: relative; }
.ct-select-wrap::after {
  content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: #8b5cf6; pointer-events: none; font-size: 12px;
}
.ct-field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 34px; }

.ct-route-hint { margin: 8px 0 0; font-size: 12px; color: #8aa0c4; min-height: 16px; }
.ct-route-hint b { color: #c9b8ff; font-weight: 700; }

.ct-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px;
}
.ct-submit {
  appearance: none; border: none; cursor: pointer;
  background: linear-gradient(120deg, #8b5cf6, #6366f1);
  color: #fff; font-size: 14.5px; font-weight: 700; font-family: inherit;
  padding: 12px 26px; border-radius: 12px;
  box-shadow: 0 10px 26px -10px rgba(139, 92, 246, 0.7);
  transition: transform 140ms ease, filter 140ms ease, opacity 140ms ease;
}
.ct-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.ct-submit:disabled { opacity: 0.6; cursor: default; transform: none; filter: none; }
.ct-privacy { font-size: 11.5px; color: #6b7895; }

.ct-status { margin: 14px 0 0; font-size: 13.5px; padding: 11px 14px; border-radius: 11px; line-height: 1.45; }
.ct-status.is-ok { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3); color: #6ee7b7; }
.ct-status.is-err { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }

/* Footnote under the form (no addresses, just reassurance + entity). */
.ct-foot-note {
  margin: 18px 0 0; font-size: 12px; color: #6b7895; line-height: 1.5;
  display: flex; align-items: center; gap: 8px;
}
.ct-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: #10b981; box-shadow: 0 0 8px #10b981; }
