/* ===========================================================
   CONTACT SALES  (contact-sales.html)
   Reuses tokens + .section / .btn / .label from home.css.
   =========================================================== */

/* ── hero ── */
.cs-hero { padding: clamp(56px, 8vh, 96px) 0 clamp(40px, 6vh, 64px); }
.cs-hero h1 { font-size: clamp(28px, 3.8vw, 42px); letter-spacing: -0.025em; line-height: 1.15; margin-top: 14px; }
.cs-lead { max-width: 56ch; margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--text); }

/* ── two-column body ── */
.cs-body { padding-bottom: clamp(64px, 9vh, 100px); }
.cs-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }

/* ── form ── */
.cs-form { display: flex; flex-direction: column; gap: 22px; }
.cs-field { display: flex; flex-direction: column; gap: 6px; }
.cs-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.cs-opt { font-weight: 400; color: var(--muted); }
.cs-field input,
.cs-field select,
.cs-field textarea {
  font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  padding: 10px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: #fff; color: var(--ink);
  transition: border-color .15s ease;
}
.cs-field input:focus,
.cs-field select:focus,
.cs-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.cs-field input::placeholder,
.cs-field textarea::placeholder { color: var(--faint); }
.cs-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg 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='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }
.cs-field textarea { resize: vertical; min-height: 96px; }
.cs-submit { align-self: flex-start; margin-top: 4px; }

/* ── confirmation ── */
.cs-confirm { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 40px 0; }
.cs-confirm h2 { font-size: 24px; letter-spacing: -0.02em; }
.cs-confirm p { font-size: 16px; color: var(--text); line-height: 1.55; max-width: 44ch; }

/* ── sidebar ── */
.cs-sidebar { position: sticky; top: 88px; }
.cs-sb-section h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.cs-sb-section p { font-size: 14.5px; line-height: 1.6; color: var(--text); }
.cs-sb-rule { border: none; border-top: 1px solid var(--line); margin: 24px 0; }

.cs-help-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.cs-help-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); line-height: 1.5; }
.cs-help-list svg { color: var(--accent); margin-top: 1px; stroke-width: 1.6; }

/* ── self-serve exit ── */
.cs-exit { padding: 28px 0; }
.cs-exit-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cs-exit-inner p { font-size: 15px; color: var(--text); flex: 1; min-width: 240px; }

/* ── responsive ── */
@media (max-width: 820px) {
  .cs-grid { grid-template-columns: 1fr; gap: 48px; }
  .cs-sidebar { position: static; }
}
@media (max-width: 460px) {
  .cs-submit { width: 100%; }
  .cs-exit-inner { flex-direction: column; align-items: flex-start; }
}
