/* ============================================================
   ZeeroCap · contact.css  (final)
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.ct-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border-lt);
}
.ct-hero__inner {
  max-width: 640px;
  margin-bottom: 52px;
}
.ct-hero__eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 14px;
}
.ct-hero__h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -.04em;
  margin-bottom: 16px;
}
.ct-hero__sub {
  font-size: 15px; color: var(--ink-2); line-height: 1.78;
}

/* Horizontal steps */
.ct-hero__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.ct-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-right: none;
}
.ct-step:first-child { border-radius: 12px 0 0 12px; }
.ct-step:last-child  { border-radius: 0 12px 12px 0; border-right: 1px solid var(--border-lt); }
.ct-step__arrow {
  flex-shrink: 0;
  font-size: 16px; color: var(--ink-3);
  padding: 28px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  width: 36px;
  text-align: center;
}
.ct-step__num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; color: var(--blue);
  flex-shrink: 0; padding-top: 2px;
}
.ct-step__title {
  font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 3px; line-height: 1.3;
}
.ct-step__body { font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }

/* ── Body ──────────────────────────────────────────────────── */
.ct-body {
  padding: 64px 0 88px;
  background: var(--surface);
}
.ct-body__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Info sidebar ──────────────────────────────────────────── */
.ct-info {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  overflow: hidden;
}
.ct-info__block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-lt);
}
.ct-info__block:last-child { border-bottom: none; }
.ct-info__block--note { background: var(--surface); }
.ct-info__icon {
  width: 32px; height: 32px;
  background: var(--blue-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; margin-top: 1px;
}
.ct-info__label {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-3); margin-bottom: 4px;
}
.ct-info__val {
  font-size: 13.5px; color: var(--ink-2); line-height: 1.65;
}
.ct-info__link {
  color: var(--blue); text-decoration: none;
  font-weight: 500; transition: opacity .15s;
}
.ct-info__link:hover { opacity: .75; }
.ct-info__note-text {
  font-size: 13px; color: var(--ink-2); line-height: 1.65;
}
.ct-info__note-text strong { color: var(--ink); }
.ct-info__map {
  border-top: 1px solid var(--border-lt);
}
.ct-info__map iframe { display: block; border-radius: 0; }

/* ── Form ──────────────────────────────────────────────────── */
.ct-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 36px 36px 32px;
}
.ct-form-hd { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border-lt); }
.ct-form-hd__title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.025em; margin-bottom: 5px;
}
.ct-form-hd__sub { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; }

.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.ct-field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.ct-field label span { color: var(--blue); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%; padding: 10px 12px;
  font-family: inherit; font-size: 14px;
  color: var(--ink); background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: 8px; outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--ink-3); font-size: 13.5px; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,.1);
}
.ct-field input.is-err,
.ct-field select.is-err,
.ct-field textarea.is-err { border-color: #ef4444; }
.ct-field__err { font-size: 11.5px; color: #ef4444; display: none; }
.ct-field__err.show { display: block; }
.ct-field textarea { resize: vertical; min-height: 96px; line-height: 1.65; }
.ct-field select {
  cursor: pointer;
  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 d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.ct-field select optgroup { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.ct-field select option { font-size: 14px; color: var(--ink); }

.ct-submit {
  width: 100%; padding: 13px 20px;
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  color: #fff; background: var(--blue);
  border: none; border-radius: 100px;
  cursor: pointer; transition: opacity .15s, transform .1s;
  margin-top: 4px;
}
.ct-submit:hover { opacity: .9; }
.ct-submit:active { transform: scale(.99); }
.ct-submit__loading { display: none; }
.ct-submit.loading .ct-submit__text { display: none; }
.ct-submit.loading .ct-submit__loading { display: block; }
.ct-submit:disabled { cursor: not-allowed; opacity: .65; }

.ct-form__note {
  font-size: 11.5px; color: var(--ink-3);
  line-height: 1.6; margin-top: 10px; text-align: center;
}

/* Success */
.ct-success { padding: 48px 20px; text-align: center; }
.ct-success__icon {
  width: 52px; height: 52px; background: var(--blue-dim);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.ct-success__title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 8px; line-height: 1.4;
}
.ct-success__body {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.72; max-width: 360px; margin: 0 auto;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .ct-body__grid { grid-template-columns: 1fr; gap: 32px; }
  .ct-info { position: static; }
}
@media (max-width: 768px) {
  .ct-hero__steps { flex-direction: column; }
  .ct-step { border-right: 1px solid var(--border-lt); border-bottom: none; border-radius: 0; }
  .ct-step:first-child { border-radius: 12px 12px 0 0; }
  .ct-step:last-child  { border-radius: 0 0 12px 12px; border-bottom: 1px solid var(--border-lt); }
  .ct-step__arrow { width: 100%; padding: 8px; border-left: 1px solid var(--border-lt); border-right: 1px solid var(--border-lt); border-top: none; border-bottom: none; }
}
@media (max-width: 640px) {
  .ct-hero { padding: 52px 0 44px; }
  .ct-body { padding: 44px 0 64px; }
  .ct-row { grid-template-columns: 1fr; gap: 0; }
  .ct-form-wrap { padding: 22px 18px 18px; }
  .ct-hero__inner { margin-bottom: 36px; }
}
