/* Contact support page — reuse audit.css design tokens */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #faf9f7;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 10;
  padding: 0 24px;
}
.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-back {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-back:hover { color: #1a1a1a; }

/* PAGE HEADER */
.page-header {
  padding: 64px 0 40px;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.page-headline {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.page-sub {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* CONFIRMATION MESSAGE */
.confirmed-banner {
  background: #f0ede8;
  border: 1.5px solid #e0d8cc;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.confirmed-icon {
  margin-bottom: 16px;
}
.confirmed-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}
.confirmed-body {
  font-size: 0.9375rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

.error-banner {
  background: #fff2f2;
  border: 1px solid #ffcaca;
  color: #c00;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}
.field:last-of-type { margin-bottom: 0; }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.req { color: #c0392b; }

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
}
textarea { resize: vertical; min-height: 120px; }

.select-wrap {
  position: relative;
}
.select-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* SUBMIT */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}
.btn-submit:hover { background: #333; }

/* HELP NOTE */
.help-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f5f3f0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}
.help-note a { color: #1a1a1a; font-weight: 600; }

/* FOOTER */
.footer {
  background: #f0ede8;
  padding: 24px;
  text-align: center;
  margin-top: 64px;
}
.footer p {
  font-size: 0.8125rem;
  color: #999;
  margin: 0;
}

@media (max-width: 600px) {
  .form-card { padding: 24px 20px; }
  .page-header { padding: 48px 0 32px; }
}