/* ============================================
   GENICON AI — Contact Sales (matches brand language)
   uses --primary teal, --secondary orange, Instrument Sans + Rubik
   ============================================ */

.page-contact { background: #fff; }
.page-contact main { overflow: hidden; }

/* ============================================
   HERO BAND  (mirrors index hero pattern)
   ============================================ */
.cs-hero {
  position: relative;
  padding: 50px 20px 0;
}
.cs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cs-blob {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.cs-blob-1 {
  background: var(--primary);
  top: -120px;
  left: -180px;
}
.cs-blob-2 {
  background: var(--secondary);
  bottom: -180px;
  right: -160px;
  opacity: 0.35;
}

.cs-hero-card {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.cs-hero-inner {
  background: #fff;
  border-radius: 40px;
  padding: 170px 70px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.18);
}
.cs-hero-text {
  flex: 0 0 56%;
}
.cs-hero-text h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cs-hero-text h1 em {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-hero-text p {
  color: rgba(41, 41, 41, 0.62);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}
.cs-hero-bullets {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.cs-hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(41, 41, 41, 0.7);
  font-weight: 500;
}
.cs-hero-bullets i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px rgba(112, 180, 175, 0.15);
}

/* Hero side card — uses glass-card vocabulary */
.cs-hero-visual {
  flex: 0 0 38%;
  display: flex;
  justify-content: flex-end;
}
.cs-hero-chip {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(112, 180, 175, 0.18), transparent 55%),
    radial-gradient(120% 90% at 82% 18%, rgba(238, 112, 74, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.92));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 22px 65px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: transform 0.3s;
}
.cs-hero-chip:hover { transform: translateY(-4px); }
.cs-hero-chip-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.025), transparent);
  font-size: 13px;
  font-weight: 500;
}
.cs-hero-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #56f39a;
  box-shadow: 0 0 12px rgba(86, 243, 154, 0.55);
  animation: cs-pulse 1.6s infinite;
}
@keyframes cs-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.15); }
}
.cs-hero-chip-time {
  margin-left: auto;
  font-family: 'DM Serif Text', serif;
  font-size: 13px;
  color: rgba(41, 41, 41, 0.55);
  font-style: italic;
}
.cs-hero-chip-body {
  padding: 18px 16px;
}
.cs-hero-chip-body p {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.cs-hero-chip-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(41, 41, 41, 0.6);
}
.cs-hero-chip-meta b {
  color: var(--text);
  font-weight: 600;
}
.cs-hero-chip-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: rgba(41, 41, 41, 0.65);
}
.cs-hero-chip-arrow {
  font-family: var(--font-head);
  font-size: 18px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FORM SECTION
   ============================================ */
.cs-form-section {
  padding: 70px 0 110px;
  position: relative;
}
.cs-form-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--surface) 100%);
  z-index: 0;
}
.cs-form-section .container { position: relative; z-index: 1; }

.cs-form-shell {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 30px 80px -40px rgba(0, 0, 0, 0.2),
    0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* ===== Step Rail ===== */
.cs-rail {
  position: relative;
  padding: 36px 56px 26px;
  background: linear-gradient(180deg, rgba(112, 180, 175, 0.06), transparent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cs-rail-track {
  position: absolute;
  bottom: 26px;
  left: 56px;
  right: 56px;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 99px;
}
.cs-rail-progress {
  position: absolute;
  bottom: 26px;
  left: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
  width: 0;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cs-rail-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.cs-rail-step {
  position: relative;
  text-align: left;
  padding-bottom: 18px;
}
.cs-rail-step b {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: rgba(41, 41, 41, 0.45);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.cs-rail-step span {
  display: block;
  font-size: 12px;
  color: rgba(41, 41, 41, 0.4);
  margin-top: 2px;
  transition: color 0.3s;
}
.cs-rail-step.active b { color: var(--text); }
.cs-rail-step.active span { color: var(--secondary); }
.cs-rail-step.complete b { color: rgba(41, 41, 41, 0.7); }
.cs-rail-step.complete span::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}

/* ===== Split layout ===== */
.cs-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
}

/* ===== Form column ===== */
.cs-form {
  padding: 48px 56px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 720px;
}
.cs-step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  animation: cs-step-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cs-step.active { display: block; }
@keyframes cs-step-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cs-step-head { margin-bottom: 36px; }
.cs-step-head .gradient-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.cs-step-head h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--text);
}
.cs-step-head p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(41, 41, 41, 0.62);
  max-width: 540px;
}

/* Server-side error banner */
.cs-form-error {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(238, 112, 74, 0.1);
  border: 1px solid rgba(238, 112, 74, 0.3);
  color: #b54818;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  animation: cs-step-in 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Honeypot — visually + AT-hidden, but not display:none (some bots skip those) */
.cs-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== Fields ===== */
.cs-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-row {
  display: grid;
  gap: 20px;
}
.cs-row-2 { grid-template-columns: 1fr 1fr; }

.cs-field {
  display: block;
  position: relative;
}
.cs-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(41, 41, 41, 0.7);
  margin-bottom: 8px;
}
.cs-label i {
  font-style: normal;
  color: var(--secondary);
  font-size: 14px;
  line-height: 1;
}
.cs-label i.cs-opt {
  color: rgba(41, 41, 41, 0.4);
  font-weight: 400;
  font-size: 12px;
}
.cs-label em.cs-multi {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  color: rgba(41, 41, 41, 0.4);
  margin-left: auto;
}

.cs-field input[type="text"],
.cs-field input[type="email"],
.cs-field input[type="tel"],
.cs-field input[type="url"],
.cs-field select,
.cs-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: all 0.25s;
  border-radius: 12px;
  -webkit-appearance: none;
  appearance: none;
}
.cs-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.cs-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23292929' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.cs-field input::placeholder,
.cs-field textarea::placeholder {
  color: rgba(41, 41, 41, 0.32);
  font-weight: 400;
}
.cs-field input:hover,
.cs-field select:hover,
.cs-field textarea:hover {
  border-color: rgba(0, 0, 0, 0.18);
}
.cs-field input:focus,
.cs-field select:focus,
.cs-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(112, 180, 175, 0.15);
}
.cs-field.has-error input,
.cs-field.has-error select,
.cs-field.has-error textarea {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(238, 112, 74, 0.12);
}

.cs-help {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(41, 41, 41, 0.5);
  line-height: 1.45;
}

/* ===== Chip grids ===== */
.cs-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-chip-grid--scale .cs-chip {
  flex: 1;
  min-width: 90px;
  text-align: center;
  justify-content: center;
}
.cs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.cs-chip:hover {
  border-color: var(--primary);
  background: rgba(112, 180, 175, 0.06);
}
.cs-chip.selected {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  box-shadow: 0 8px 18px -8px rgba(41, 41, 41, 0.4);
}
.cs-chip.selected::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.cs-chip-grid.cs-error {
  outline: 2px dashed var(--secondary);
  outline-offset: 6px;
  border-radius: 8px;
}

/* ===== Checkbox fields ===== */
.cs-field--check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}
.cs-field--check:hover { border-color: rgba(0, 0, 0, 0.06); }
.cs-field--check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all 0.18s;
}
.cs-field--check input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
}
.cs-field--check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='2.5'><path d='M5 10l4 4 6-8'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
.cs-field--check span a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cs-field--check span em {
  font-style: italic;
  color: rgba(41, 41, 41, 0.5);
  display: block;
  font-size: 12.5px;
  margin-top: 2px;
}

/* ===== Summary (step 4) ===== */
.cs-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding: 28px 30px;
  background: var(--surface);
  border-radius: 18px;
  margin-bottom: 28px;
  position: relative;
}
.cs-summary::before {
  content: 'Brief preview';
  position: absolute;
  top: -10px;
  left: 24px;
  background: #fff;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 99px;
}
.cs-summary-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cs-summary-row dt {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.5);
}
.cs-summary-row dd {
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
  margin: 0;
}
.cs-summary-row dd em {
  color: rgba(41, 41, 41, 0.4);
  font-style: italic;
  font-size: 13px;
}
.cs-summary-row.cs-summary-wide { grid-column: 1 / -1; }

/* ===== Done step ===== */
.cs-step--done .cs-done {
  text-align: center;
  padding: 32px 0;
  max-width: 540px;
  margin: 0 auto;
}
.cs-done-mark {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(112, 180, 175, 0.12);
  margin-bottom: 20px;
  animation: cs-mark 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes cs-mark {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cs-done .gradient-label { margin-bottom: 12px; display: inline-block; }
.cs-done h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--text);
}
.cs-done h2 em {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-done p {
  color: rgba(41, 41, 41, 0.62);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.cs-done-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border-radius: 18px;
  padding: 6px;
  margin-bottom: 28px;
}
.cs-done-meta > div {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.cs-done-meta > div:last-child { border-right: 0; }
.cs-done-meta span {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.5);
  font-weight: 500;
}
.cs-done-meta b {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* ===== Controls ===== */
.cs-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 0;
  margin-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.cs-controls.is-hidden { display: none; }

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
}
.cs-btn-ghost {
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}
.cs-btn-ghost:hover {
  border-color: var(--text);
  background: rgba(41, 41, 41, 0.04);
}
.cs-btn-ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.cs-btn-primary {
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  padding: 14px 30px;
}
.cs-btn-primary:hover {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.cs-btn svg { transition: transform 0.2s; }
.cs-btn-primary:hover svg { transform: translateX(3px); }
.cs-btn-ghost:hover svg { transform: translateX(-3px); }

.cs-controls-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(41, 41, 41, 0.5);
}
.cs-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   RIGHT PANEL (live intel)
   ============================================ */
.cs-panel {
  padding: 44px 40px 36px;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(112, 180, 175, 0.10), transparent 55%),
    radial-gradient(120% 90% at 82% 92%, rgba(238, 112, 74, 0.08), transparent 60%),
    var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 720px;
}

.cs-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cs-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
}
.cs-panel-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px rgba(112, 180, 175, 0.18);
}
.cs-panel-id {
  font-size: 12px;
  color: rgba(41, 41, 41, 0.5);
  font-weight: 500;
}

.cs-panel-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
}
.cs-panel-title em {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-panel-lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(41, 41, 41, 0.62);
}

.cs-panel-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-panel-h {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.5);
}

.cs-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  animation: cs-panel-pop 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cs-panel-list li i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(112, 180, 175, 0.16);
  position: relative;
  margin-top: 2px;
  transition: background 0.3s;
}
.cs-panel-list li i::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transform: scale(0);
  transition: transform 0.3s 0.05s;
}
.cs-panel-list li.cs-active i::after { transform: scale(1); }
.cs-panel-list li.cs-pending {
  color: rgba(41, 41, 41, 0.45);
  font-style: italic;
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.12);
}
.cs-panel-list li.cs-pending i { background: transparent; border: 1px dashed rgba(0, 0, 0, 0.18); }
@keyframes cs-panel-pop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cs-panel-routed { margin-top: auto; }
.cs-panel-route {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
}
.cs-panel-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(238, 112, 74, 0.45);
}
.cs-panel-route b {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cs-panel-route em {
  display: block;
  font-style: italic;
  font-size: 12.5px;
  color: rgba(41, 41, 41, 0.55);
  line-height: 1.4;
  margin-top: 2px;
}

.cs-panel-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}
.cs-panel-trust > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.cs-panel-trust > div:last-child { border-right: 0; }
.cs-panel-trust b {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.5);
}
.cs-panel-trust span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   ALTERNATIVES SECTION
   ============================================ */
.cs-alt {
  padding: 100px 20px 130px;
  background: #fff;
}
.cs-alt-row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.cs-alt-text { padding-top: 8px; }
.cs-alt-text .gradient-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.cs-alt-text h3 {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cs-alt-text h3 em {
  font-family: 'DM Serif Text', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-alt-text p {
  color: rgba(41, 41, 41, 0.62);
  font-size: 16px;
  line-height: 1.55;
}
.cs-alt-cards {
  display: grid;
  gap: 14px;
}
.cs-alt-card {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cs-alt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.cs-alt-card > * { position: relative; z-index: 1; }
.cs-alt-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 50px -20px rgba(238, 112, 74, 0.4);
}
.cs-alt-card:hover::before { opacity: 1; }
.cs-alt-card:hover * { color: #fff !important; }
.cs-alt-card-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 24px;
  text-align: center;
  transition: color 0.3s;
}
.cs-alt-card:hover .cs-alt-card-num {
  -webkit-text-fill-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.3);
}
.cs-alt-card-body h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cs-alt-card-body p {
  font-size: 14px;
  color: rgba(41, 41, 41, 0.6);
  line-height: 1.5;
  margin: 0;
}
.cs-alt-card-arrow {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--text);
  transition: transform 0.3s;
}
.cs-alt-card:hover .cs-alt-card-arrow {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .cs-hero-inner { padding: 140px 40px 70px; flex-direction: column; }
  .cs-hero-text { flex: 1 1 auto; }
  .cs-hero-visual { flex: 1 1 auto; justify-content: flex-start; width: 100%; }
  .cs-hero-chip { max-width: 100%; }
  .cs-split { grid-template-columns: 1fr; }
  .cs-form { border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); min-height: 0; }
  .cs-panel { min-height: 0; padding: 36px 32px; }
  .cs-panel-routed { margin-top: 12px; }
}

@media (max-width: 768px) {
  .cs-hero { padding: 30px 12px 0; }
  .cs-hero-inner { padding: 120px 24px 56px; border-radius: 28px; gap: 32px; }
  .cs-hero-text h1 { font-size: 38px; }
  .cs-hero-bullets { gap: 14px; }
  .cs-hero-bullets span { font-size: 13px; }

  .cs-form-section { padding: 50px 12px 80px; }
  .cs-form-shell { border-radius: 20px; }
  .cs-rail { padding: 26px 24px 22px; }
  .cs-rail-track, .cs-rail-progress { left: 24px; right: 24px; }
  .cs-rail-step b { font-size: 13px; }
  .cs-rail-step span { font-size: 11px; }
  .cs-form { padding: 36px 24px 24px; }
  .cs-panel { padding: 32px 22px; }
  .cs-step-head h2 { font-size: 30px; }
  .cs-row-2 { grid-template-columns: 1fr; gap: 18px; }
  .cs-summary { grid-template-columns: 1fr; padding: 22px; }
  .cs-controls { flex-wrap: wrap; gap: 12px; }
  .cs-controls-meta { order: 3; width: 100%; justify-content: center; }

  .cs-alt { padding: 70px 16px 90px; }
  .cs-alt-row { grid-template-columns: 1fr; gap: 36px; }
  .cs-alt-text h3 { font-size: 34px; }
  .cs-alt-card { grid-template-columns: 44px 1fr 22px; gap: 16px; padding: 22px 20px; }
  .cs-alt-card-num { padding-right: 14px; font-size: 20px; }
  .cs-alt-card-body h4 { font-size: 17px; }
}

@media (max-width: 540px) {
  .cs-hero-text h1 { font-size: 32px; }
  .cs-rail-steps { gap: 4px; }
  .cs-rail-step b { font-size: 12px; }
  .cs-rail-step span { font-size: 10px; }
  .cs-step-head h2 { font-size: 26px; }
  .cs-chip { padding: 9px 14px; font-size: 13px; }
  .cs-done h2 { font-size: 32px; }
  .cs-done-meta { grid-template-columns: 1fr; padding: 4px; }
  .cs-done-meta > div { border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .cs-done-meta > div:last-child { border-bottom: 0; }
}
