.to-main {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--primary-soft) 100%);
  padding: 60px 48px 70px;
}

.to-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.to-tag {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: var(--fs-12);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.to-head h1 {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.to-desc {
  color: var(--text-muted);
  line-height: 1.65;
}

.to-form-card {
  max-width: 880px;
  margin: 0 auto 56px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(20,60,120,0.08);
}

.to-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.to-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.to-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  background: #fff;
  transition: border-color 0.2s;
}

.to-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,164,232,0.12);
}

.to-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
}

.to-input input::placeholder {
  color: var(--text-subtle);
}

.to-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.to-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26,77,255,0.3);
}

/* feature bar */
.to-features {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--primary-soft);
  border-radius: var(--r-md);
  padding: 24px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.to-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.to-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.to-feat-title {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.to-feat-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
