/* ============================================================
   HARBORPASS — Contact Sales page
   contact-sales.css  (per-page, like get-started.css / privacy-policy.css)
   ============================================================ */

.cs-page {
  background: #f6f7fb;
}

.cs-section {
  padding: 120px 24px 100px;
  min-height: 100vh;
}

.cs-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* ── Intro column ── */
.cs-intro {
  position: sticky;
  top: 120px;
}

.cs-eyebrow {
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #807dfe;
  margin-bottom: 14px;
}

.cs-title {
  font-family: 'Neue Power', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #01033e;
  margin: 0 0 18px;
}

.cs-sub {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(1, 3, 62, 0.7);
  margin: 0 0 28px;
}

.cs-contact-alt {
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: rgba(1, 3, 62, 0.55);
}
.cs-contact-alt a {
  color: #0033ff;
  font-weight: 600;
  text-decoration: none;
}
.cs-contact-alt a:hover {
  color: #0026cc;
}

/* ── Form card ── */
.cs-form-card {
  background: #ffffff;
  border: 1px solid rgba(1, 3, 62, 0.08);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(1, 3, 62, 0.06);
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cs-field {
  display: flex;
  flex-direction: column;
}

.cs-label {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(1, 3, 62, 0.7);
  margin-bottom: 7px;
}
.cs-optional {
  font-weight: 400;
  color: rgba(1, 3, 62, 0.4);
}

.cs-input,
.cs-textarea {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  color: #01033e;
  background: #ffffff;
  border: 1px solid rgba(1, 3, 62, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.cs-textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.55;
}
.cs-input::placeholder,
.cs-textarea::placeholder {
  color: rgba(1, 3, 62, 0.38);
}
.cs-input:focus,
.cs-textarea:focus {
  border-color: #0033ff;
  box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.1);
}
.cs-field.has-error .cs-input,
.cs-field.has-error .cs-textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
.cs-error {
  font-family: 'General Sans', sans-serif;
  font-size: 12.5px;
  color: #ef4444;
  margin-top: 6px;
  display: none;
}
.cs-field.has-error .cs-error {
  display: block;
}

/* Honeypot — visually hidden, off-screen. */
.cs-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Submit button (pill) ── */
.cs-submit {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #0033ff;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  margin-top: 4px;
}
.cs-submit:hover {
  background: #0026cc;
}
.cs-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Success state ── */
.cs-success {
  text-align: center;
  padding: 24px 12px;
}
.cs-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 196, 140, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.cs-success-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #01033e;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.cs-success-body {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(1, 3, 62, 0.65);
  margin: 0 auto;
  max-width: 380px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cs-intro {
    position: static;
  }
}
@media (max-width: 600px) {
  .cs-section {
    padding: 100px 18px 64px;
  }
  .cs-form-card {
    padding: 24px;
  }
  .cs-row {
    grid-template-columns: 1fr;
  }
}

/* ── Phone field with country dial-code picker (mirrors the get-started wizard) ── */
.cs-phone-wrap {
  display: flex;
  background: #ffffff;
  border: 1px solid rgba(1, 3, 62, 0.15);
  border-radius: 10px;
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
}
.cs-phone-wrap:focus-within {
  border-color: #0033ff;
  box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.1);
}
.cs-country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: rgba(1, 3, 62, 0.04);
  border: none;
  border-right: 1px solid rgba(1, 3, 62, 0.12);
  border-radius: 9px 0 0 9px;
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #01033e;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cs-country-trigger:hover { background: rgba(1, 3, 62, 0.07); }
.cs-country-flag { font-size: 16px; }
.cs-country-dial { font-size: 13px; color: #01033e; }
.cs-chevron { opacity: 0.38; transition: transform 0.2s; }
.cs-country-trigger.open .cs-chevron { transform: rotate(180deg); }
.cs-phone-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  color: #01033e;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0 9px 9px 0;
}
.cs-phone-input::placeholder { color: rgba(1, 3, 62, 0.38); }
.cs-country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 300;
  background: #ffffff;
  border: 1px solid rgba(1, 3, 62, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(1, 3, 62, 0.15);
  width: 280px;
  overflow: hidden;
  animation: csDropIn 0.2s ease;
}
@keyframes csDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cs-country-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(1, 3, 62, 0.07);
}
.cs-country-search-wrap svg { opacity: 0.32; flex-shrink: 0; }
.cs-country-search {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: #01033e;
  background: transparent;
}
.cs-country-search::placeholder { color: rgba(1, 3, 62, 0.32); }
.cs-country-list {
  list-style: none;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 3, 62, 0.12) transparent;
}
.cs-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13px;
}
.cs-country-item:hover { background: rgba(0, 51, 255, 0.06); }
.cs-country-item-name { flex: 1; color: #01033e; }
.cs-country-item-dial { color: rgba(1, 3, 62, 0.42); font-size: 12px; }
