/* Discovery call booking page */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8f6f2;
  color: #1a1a1a;
  margin: 0;
  padding: 40px 20px;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.subheading {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 12px;
  line-height: 1.5;
}

.body-text {
  font-size: 0.9375rem;
  color: #555;
  margin: 0 0 32px;
  line-height: 1.6;
}

.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.field {
  margin-bottom: 20px;
}

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

label .optional {
  font-weight: 400;
  color: #999;
  font-size: 0.8125rem;
}

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;
  border-radius: 8px;
}

input: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: 90px;
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: #333;
}

.btn-submit:active {
  background: #000;
}

/* Arrow icon inline SVG */
.btn-submit svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}

.btn-submit:hover svg {
  transform: translateX(3px);
}

.hint {
  font-size: 0.8125rem;
  color: #999;
  margin-top: 4px;
}

@media (max-width: 480px) {
  body { padding: 24px 16px; }
  .form-card { padding: 20px; }
  h1 { font-size: 1.625rem; }
}